summaryrefslogtreecommitdiff
path: root/vmdebootstrap
diff options
context:
space:
mode:
authorNeil Williams <codehelp@debian.org>2014-11-16 15:10:24 +0000
committerNeil Williams <codehelp@debian.org>2014-11-16 15:10:24 +0000
commit1ce8413f4fae5ef8f527c4d3b63ed5e7322411c0 (patch)
tree40cabd0fe8037dd1dbcc422f215c3c9b81584afc /vmdebootstrap
parent9882c671914aa3e625965b19e70719a4cbd1714e (diff)
downloadvmdebootstrap-1ce8413f4fae5ef8f527c4d3b63ed5e7322411c0.tar.gz
Fix typo in bootsize partition spacevmdebootstrap-0.5
Update manpage advice on bootloader options.
Diffstat (limited to 'vmdebootstrap')
-rwxr-xr-xvmdebootstrap4
1 files changed, 2 insertions, 2 deletions
diff --git a/vmdebootstrap b/vmdebootstrap
index 126475f..24e38d0 100755
--- a/vmdebootstrap
+++ b/vmdebootstrap
@@ -27,7 +27,7 @@ import tempfile
import time
-__version__ = '0.4'
+__version__ = '0.5'
class VmDebootstrap(cliapp.Application):
@@ -245,7 +245,7 @@ class VmDebootstrap(cliapp.Application):
if self.settings['bootsize'] and self.settings['bootsize'] is not '0%':
bootsize = str(self.settings['bootsize'] / (1024 * 1024))
self.runcmd(['parted', '-s', self.settings['image'],
- 'mkpart', 'primary', 'fat16', '0', bootsize])
+ 'mkpart', 'primary', 'fat16', '0%', bootsize])
else:
bootsize = '0%'
self.runcmd(['parted', '-s', self.settings['image'],