Another small bugfix

rtd2
Eric Holscher 2010-08-15 04:24:13 +00:00
parent 46ec467b94
commit 42c7bf54f5
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ def update_imported_docs(project):
if project.repo_type is 'hg':
command = 'hg clone %s %s' % (repo, project.slug)
else:
repo.replace('.git', '')
repo = repo.replace('.git', '')
command = 'git clone %s.git %s' % (repo, project.slug)
print command
run(command)