fix
This commit is contained in:
parent
8912ca07fa
commit
cbde856845
1 changed files with 1 additions and 3 deletions
|
@ -86,7 +86,7 @@ def create_project(token):
|
||||||
print e
|
print e
|
||||||
pass
|
pass
|
||||||
|
|
||||||
project.info = get_github_data(project.gitRepository)
|
project.info = json.dumps(get_github_data(project.gitRepository))
|
||||||
db.put(project)
|
db.put(project)
|
||||||
|
|
||||||
#update user projects list
|
#update user projects list
|
||||||
|
@ -94,8 +94,6 @@ def create_project(token):
|
||||||
|
|
||||||
db.put(user)
|
db.put(user)
|
||||||
db.save
|
db.save
|
||||||
t1 = threading.Thread(target=updateProjectInfo,args=(project.key().id(),))
|
|
||||||
t1.start()
|
|
||||||
|
|
||||||
return Response(response=project.to_JSON(),
|
return Response(response=project.to_JSON(),
|
||||||
status=200,
|
status=200,
|
||||||
|
|
Loading…
Reference in a new issue