summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xscripts/pbuilder-create4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/pbuilder-create b/scripts/pbuilder-create
index 4b18df2..c118b15 100755
--- a/scripts/pbuilder-create
+++ b/scripts/pbuilder-create
@@ -77,9 +77,9 @@ class PbuilderCreate(cliapp.Application):
'--basetgz', tgz,
'--logfile', tgz + '.log']
if othermirror:
- argv += ['--othermirror', othermirror]
+ argv += ['--othermirror=%s' % x for x in othermirror]
if self.settings['verbose']:
- print ' '. join(argv)
+ print ' '.join(argv)
if self.settings['no-act']:
return
self.runcmd(argv)