summaryrefslogtreecommitdiffstats
path: root/nova/virt
diff options
context:
space:
mode:
authorJenkins <jenkins@review.openstack.org>2012-03-18 23:20:04 +0000
committerGerrit Code Review <review@openstack.org>2012-03-18 23:20:04 +0000
commit58bed5a7a07cdc1b302a96c7fa2be13056fa2333 (patch)
treeee30b7ecc72f84a60fc138e920232af810136027 /nova/virt
parent9e342447c5a7d52cc498561b4636abadd8c997ca (diff)
parenta1c28495aa8d970df0c1afa4efac1d10bdb24825 (diff)
Merge "various cleanups"
Diffstat (limited to 'nova/virt')
-rw-r--r--nova/virt/images.py1
-rw-r--r--nova/virt/libvirt/imagecache.py2
-rw-r--r--nova/virt/libvirt/utils.py6
3 files changed, 3 insertions, 6 deletions
diff --git a/nova/virt/images.py b/nova/virt/images.py
index 12510c792..1e0ae0a22 100644
--- a/nova/virt/images.py
+++ b/nova/virt/images.py
@@ -32,7 +32,6 @@ from nova.openstack.common import cfg
from nova import utils
-FLAGS = flags.FLAGS
LOG = logging.getLogger(__name__)
image_opts = [
diff --git a/nova/virt/libvirt/imagecache.py b/nova/virt/libvirt/imagecache.py
index 8b01c27c5..25455a07c 100644
--- a/nova/virt/libvirt/imagecache.py
+++ b/nova/virt/libvirt/imagecache.py
@@ -23,11 +23,9 @@ http://wiki.openstack.org/nova-image-cache-management.
"""
-import datetime
import hashlib
import os
import re
-import sys
import time
from nova import compute
diff --git a/nova/virt/libvirt/utils.py b/nova/virt/libvirt/utils.py
index 0eec1db1a..db7e11b26 100644
--- a/nova/virt/libvirt/utils.py
+++ b/nova/virt/libvirt/utils.py
@@ -53,9 +53,9 @@ def create_image(disk_format, path, size):
:param size: Desired size of disk image. May be given as an int or
a string. If given as an int, it will be interpreted
as bytes. If it's a string, it should consist of a number
- followed by an optional prefix ('k' for kilobytes, 'm'
- for megabytes, 'g' for gigabytes, 't' for terabytes). If no
- prefix is given, it will be interpreted as bytes.
+ with an optional suffix ('K' for Kibibytes,
+ M for Mebibytes, 'G' for Gibibytes, 'T' for Tebibytes).
+ If no suffix is given, it will be interpreted as bytes.
"""
execute('qemu-img', 'create', '-f', disk_format, path, size)