From: Evan Broder Date: Tue, 17 Feb 2009 09:29:48 +0000 (-0500) Subject: Be explicit about units in invirt-setquota. X-Git-Tag: 0.1.7^0 X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-database.git/commitdiff_plain/98a10bc318400fb93d0d9da10a2e128c7f46578e Be explicit about units in invirt-setquota. svn path=/trunk/packages/invirt-database/; revision=2158 --- diff --git a/debian/changelog b/debian/changelog index 40bc3fb..21d5a6a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,9 +1,10 @@ invirt-database (0.1.7) unstable; urgency=low - * Disk quotas are measured in gigabytes. + * Disk quotas are measured in gibibytes. * Rename invirt-setquotas to invirt-quota. + * Be explicit about units in invirt-quota. - -- Evan Broder Tue, 17 Feb 2009 04:16:33 -0500 + -- Evan Broder Tue, 17 Feb 2009 04:29:20 -0500 invirt-database (0.1.6) unstable; urgency=low diff --git a/python/database/owner.py b/python/database/owner.py index 196bd85..504a70f 100755 --- a/python/database/owner.py +++ b/python/database/owner.py @@ -25,8 +25,8 @@ class Owner(object): e = MAX_VMS_TOTAL if not f: f = MAX_VMS_ACTIVE - return """""" % (self.owner_id, a,b,c,d,e,f) def getMemoryQuotas(owner): owner_info = Owner.query().filter_by(owner_id=owner).first()