summaryrefslogtreecommitdiff
path: root/vmdebootstrap
diff options
context:
space:
mode:
authorNeil Williams <codehelp@debian.org>2014-08-31 14:13:51 -0700
committerNeil Williams <codehelp@debian.org>2014-08-31 14:13:51 -0700
commitfe3a9a3f12c52e88bd48a8453b8f43174c7afcc2 (patch)
tree66413924252118c19bb4d044854907293face2e5 /vmdebootstrap
parent6e62b5502a892e4738137205cda39c61b1bf0eac (diff)
downloadvmdebootstrap-fe3a9a3f12c52e88bd48a8453b8f43174c7afcc2.tar.gz
pep8 fixes
Diffstat (limited to 'vmdebootstrap')
-rwxr-xr-xvmdebootstrap4
1 files changed, 2 insertions, 2 deletions
diff --git a/vmdebootstrap b/vmdebootstrap
index 694d1f6..fafd78a 100755
--- a/vmdebootstrap
+++ b/vmdebootstrap
@@ -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']