diff options
author | rubenwardy <rw@rubenwardy.com> | 2020-07-14 03:49:30 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2020-07-14 23:45:54 +0100 |
commit | c9e4638b348a5d9004376ed90e72fe8bb9df40e3 (patch) | |
tree | 3d333240f1cbafc7a7f4bdcbf7034600ced2d951 /app/tasks/importtasks.py | |
parent | ff2cd6dc2f2e1c500744c2e2e0c45a5590774484 (diff) | |
download | cheatdb-c9e4638b348a5d9004376ed90e72fe8bb9df40e3.tar.xz |
Add start of bulk tag editor
Diffstat (limited to 'app/tasks/importtasks.py')
-rw-r--r-- | app/tasks/importtasks.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/app/tasks/importtasks.py b/app/tasks/importtasks.py index e0b2308..ff085cd 100644 --- a/app/tasks/importtasks.py +++ b/app/tasks/importtasks.py @@ -299,6 +299,8 @@ def makeVCSRelease(id, branch): release.approve(release.package.author) db.session.commit() + updateMetaFromRelease.delay(release.id, destPath) + return release.url finally: shutil.rmtree(gitDir) |