diff options
Diffstat (limited to 'pykolab/plugins/dynamicquota/__init__.py')
-rw-r--r-- | pykolab/plugins/dynamicquota/__init__.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pykolab/plugins/dynamicquota/__init__.py b/pykolab/plugins/dynamicquota/__init__.py index d19a811..6115dcd 100644 --- a/pykolab/plugins/dynamicquota/__init__.py +++ b/pykolab/plugins/dynamicquota/__init__.py @@ -47,13 +47,13 @@ class KolabDynamicquota(object): for keyword in [ 'used', 'current_quota', 'new_quota', 'default_quota' ]: if not kw.has_key(keyword): - log.warning(_("No keyword %s passed to set_user_folder_quota") %(keyword)) + log.warning(_("No keyword %s passed to set_user_folder_quota") % (keyword)) return 0 else: try: kw[keyword] = (int)(kw[keyword]) except: - log.error(_("Quota '%s' not an integer!") %(keyword)) + log.error(_("Quota '%s' not an integer!") % (keyword)) return 0 # Escape the user without quota |