Skip to content

Commit

Permalink
Exception string lacking 'G' for gigabytes unit
Browse files Browse the repository at this point in the history
  • Loading branch information
rcarrillocruz committed Jan 19, 2011
1 parent 7d7fbf5 commit b760e7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nova/volume/api.py
Expand Up @@ -44,7 +44,7 @@ def create(self, context, size, name, description):
LOG.warn(_("Quota exceeeded for %s, tried to create %sG volume"),
context.project_id, size)
raise quota.QuotaError(_("Volume quota exceeded. You cannot "
"create a volume of size %s") % size)
"create a volume of size %sG") % size)

options = {
'size': size,
Expand Down

0 comments on commit b760e7c

Please sign in to comment.