Commit 3179b817 authored by wanliofficial's avatar wanliofficial

update

parent 2869ce0b
...@@ -108,7 +108,6 @@ class BuildLogsManager(object): ...@@ -108,7 +108,6 @@ class BuildLogsManager(object):
return False, "app not found" return False, "app not found"
result = BuildLogs.select().where(app=app).order_by(desc(BuildLogs.create_at)).first() result = BuildLogs.select().where(app=app).order_by(desc(BuildLogs.create_at)).first()
print(result)
if result: if result:
result = result.to_dict(only=["uuid", "app_path"]) result = result.to_dict(only=["uuid", "app_path"])
result.update({ "app_name": app.app_name }) result.update({ "app_name": app.app_name })
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment