Skip to content
Snippets Groups Projects
Commit 5e668183 authored by Michael Perry's avatar Michael Perry
Browse files

BF: Remove invalid input parameter

parent c20c742c
No related branches found
No related tags found
No related merge requests found
......@@ -252,7 +252,7 @@ def insert_app(db, fp, apps_path, app_meta=None):
app_tar = os.path.join(app_dir, '%s-%s.tar' % (name, version))
app_meta.update({'asset_url': 'apps/%s' % app_meta.get('_id')})
db.apps.update({'_id': app_meta.get('_id')}, app_meta, new=True, upsert=True)
db.apps.update({'_id': app_meta.get('_id')}, app_meta, upsert=True)
shutil.move(fp, app_tar)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment