From 03a74592ed2dba8d82432fb7eaa76c9dce2351c8 Mon Sep 17 00:00:00 2001 From: Vishvananda Ishaya Date: Mon, 18 Oct 2010 13:40:03 -0700 Subject: it is flags.DEFINE_integer, not FLAGS.define_int --- nova/compute/disk.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nova/compute/disk.py b/nova/compute/disk.py index 8d2198b67..447a29004 100644 --- a/nova/compute/disk.py +++ b/nova/compute/disk.py @@ -32,8 +32,8 @@ from nova import flags FLAGS = flags.FLAGS -FLAGS.define_int('minimum_root_size', 1024 * 1024 * 1024 * 10, - 'minimum size in bytes of root partition') +flags.DEFINE_integer('minimum_root_size', 1024 * 1024 * 1024 * 10, + 'minimum size in bytes of root partition') @defer.inlineCallbacks -- cgit