Make pylint happy ♥ qubes_lvm

This commit is contained in:
Bahtiar `kalkin-` Gadimov 2016-09-02 19:17:00 +02:00
parent 1ca3c00797
commit 818ed20248
No known key found for this signature in database
GPG Key ID: 96ED3C3BA19C3DEE

View File

@ -132,7 +132,7 @@ def extend_volume(args):
only thin volumes.
'''
vid = args.name
size = int(args.size) / ( 1000 * 1000)
size = int(args.size) / (1000 * 1000)
log.debug("Extending LVM %s to %s", vid, size)
cmd = ["lvextend", "-L+%s" % size, vid]
log.debug(cmd)