]> git.siccegge.de Git - forks/vmdebootstrap.git/commitdiff
pep8 fixes
authorNeil Williams <codehelp@debian.org>
Sun, 31 Aug 2014 21:13:51 +0000 (14:13 -0700)
committerNeil Williams <codehelp@debian.org>
Sun, 31 Aug 2014 21:13:51 +0000 (14:13 -0700)
vmdebootstrap

index 694d1f6d94679b96c557f7cdb33db90b6df4f963..fafd78ab4c9ec6590a115026c763ac9a23e8bb05 100755 (executable)
@@ -33,7 +33,7 @@ class VmDebootstrap(cliapp.Application):
 
     def add_settings(self):
         default_arch = subprocess.check_output(
-                ["dpkg", "--print-architecture"]).strip()
+            ["dpkg", "--print-architecture"]).strip()
 
         self.settings.boolean(['verbose'], 'report what is going on')
         self.settings.string(['image'], 'put created disk image in FILE',
@@ -332,7 +332,7 @@ class VmDebootstrap(cliapp.Application):
             self.message('Running debootstrap second stage')
             self.runcmd(['chroot', rootdir,
                          '/debootstrap/debootstrap', '--second-stage'],
-                         env=env)
+                        env=env)
 
     def set_hostname(self, rootdir):
         hostname = self.settings['hostname']