Changeset - f6800c5e5b2d
[Not reviewed]
beta
0 1 0
Marcin Kuzminski - 13 years ago 2012-07-11 22:49:44
marcin@python-works.com
fill miliseconds with 0 since it can return <6 digit number
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
rhodecode/model/repo.py
Show inline comments
 
@@ -533,7 +533,7 @@ class RepoModel(BaseModel):
 
                        os.path.join(rm_path, 'rm__.%s' % alias))
 
        # disable repo
 
        _now = datetime.now()
 
        _ms = str(_now.microsecond)
 
        _ms = str(_now.microsecond).rjust(6, '0')
 
        _d = 'rm__%s__%s' % (_now.strftime('%Y%m%d_%H%M%S_' + _ms),
 
                             repo.repo_name)
 
        shutil.move(rm_path, os.path.join(self.repos_path, _d))
0 comments (0 inline, 0 general)