1
0
mirror of https://github.com/balkian/eestec.codeit.git synced 2024-09-27 22:11:42 +00:00

Fixed url in repos for mongodb

This commit is contained in:
J.Fernando Sánchez 2013-03-01 20:23:55 +01:00
parent c79597edb0
commit 796c6acd54

2
app.py
View File

@ -51,7 +51,7 @@ def update_db():
repos = db.repos repos = db.repos
for repo in store.repos: for repo in store.repos:
reposdb=repos.update({'url':repo}, reposdb=repos.update({'url':repo},
{'url': url, 'data': store.repos[repo]}, {'url': repo, 'data': store.repos[repo]},
upsert=True, upsert=True,
w=0) w=0)