~xubuntu-dev/ubiquity/lp1437180_feh

« back to all changes in this revision

Viewing changes to ubiquity/frontend/debconf_ui.py

  • Committer: Colin Watson
  • Date: 2012-07-16 14:29:13 UTC
  • Revision ID: cjwatson@canonical.com-20120716142913-hh1qmfjejxa9dfyb
Make all Python code pass pep8(1), and add a test to enforce this.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
 
27
27
from __future__ import print_function
28
28
 
 
29
import os
 
30
import signal
29
31
import sys
30
 
import os
31
32
import textwrap
32
 
import signal
33
33
 
34
34
import debconf
35
35
 
38
38
from ubiquity import i18n
39
39
from ubiquity.components import install, plugininstall
40
40
 
 
41
 
41
42
class PersistentDebconfCommunicator(debconf.Debconf):
42
43
    def shutdown(self):
43
44
        pass
44
45
 
 
46
 
45
47
class Wizard(BaseFrontend):
46
48
    def __init__(self, distro):
47
49
        BaseFrontend.__init__(self, distro)