aboutsummaryrefslogtreecommitdiff
path: root/rhodecode/model/repos_group.py
diff options
context:
space:
mode:
authorMarcin Kuzminski <marcin@python-works.com>2012-02-02 00:31:00 +0200
committerMarcin Kuzminski <marcin@python-works.com>2012-02-02 00:31:00 +0200
commit8728abaddcf74d5bdcff606d128f289afa4a3bcd (patch)
tree779f05b2106202e86aa02dacc472d0625f4282e9 /rhodecode/model/repos_group.py
parent7249944286815786d518e27dd1b8d6aca39db394 (diff)
garden
- unified logging formatting to use only % --HG-- branch : beta extra : rebase_source : 3e21b92e6102c14b6d395db12fbb62a753ca7373
Diffstat (limited to 'rhodecode/model/repos_group.py')
-rw-r--r--rhodecode/model/repos_group.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/rhodecode/model/repos_group.py b/rhodecode/model/repos_group.py
index 02882c69..e0de7076 100644
--- a/rhodecode/model/repos_group.py
+++ b/rhodecode/model/repos_group.py
@@ -58,7 +58,7 @@ class ReposGroupModel(BaseModel):
"""
create_path = os.path.join(self.repos_path, group_name)
- log.debug('creating new group in %s', create_path)
+ log.debug('creating new group in %s' % create_path)
if os.path.isdir(create_path):
raise Exception('That directory already exists !')
@@ -76,13 +76,12 @@ class ReposGroupModel(BaseModel):
log.debug('skipping group rename')
return
- log.debug('renaming repos group from %s to %s', old, new)
-
+ log.debug('renaming repos group from %s to %s' % (old, new))
old_path = os.path.join(self.repos_path, old)
new_path = os.path.join(self.repos_path, new)
- log.debug('renaming repos paths from %s to %s', old_path, new_path)
+ log.debug('renaming repos paths from %s to %s' % (old_path, new_path))
if os.path.isdir(new_path):
raise Exception('Was trying to rename to already '