# HG changeset patch # User Marcin Kuzminski # Date 1317209785 -7200 # Node ID 7592484e84d3c22f78ad8a75b0129602b9ee9c87 # Parent dc16211e7292f769a682b6ba994ab4ebbe1e05d1 fixed exception message diff -r dc16211e7292 -r 7592484e84d3 rhodecode/model/repo.py --- a/rhodecode/model/repo.py Sat Sep 24 22:21:43 2011 +0300 +++ b/rhodecode/model/repo.py Wed Sep 28 13:36:25 2011 +0200 @@ -332,8 +332,8 @@ old_path = os.path.join(self.repos_path, old) new_path = os.path.join(self.repos_path, new) if os.path.isdir(new_path): - raise Exception('Was trying to rename to already existing dir %s', - new_path) + raise Exception('Was trying to rename to already existing dir %s' \ + % new_path) shutil.move(old_path, new_path) def __delete_repo(self, repo):