diff options
author | rubenwardy <rw@rubenwardy.com> | 2020-08-18 00:41:37 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2020-08-18 00:41:37 +0100 |
commit | b50a306e66df21372301ca25ecc10af337f642df (patch) | |
tree | 55f4e7c085120ba83bc712146d42008b6b259cb8 /app/tasks/importtasks.py | |
parent | 0b06cfffba914398da9f55ef08585622720af822 (diff) | |
download | cheatdb-b50a306e66df21372301ca25ecc10af337f642df.tar.xz |
Print updateMetaFromRelease info
Diffstat (limited to 'app/tasks/importtasks.py')
-rw-r--r-- | app/tasks/importtasks.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/tasks/importtasks.py b/app/tasks/importtasks.py index 26e94f6..13abf1c 100644 --- a/app/tasks/importtasks.py +++ b/app/tasks/importtasks.py @@ -148,6 +148,9 @@ def updateMetaFromRelease(self, id, path): elif release.package is None: raise TaskError("No package attached to release") + print("updateMetaFromRelease: {} for {}/{}" \ + .format(id, release.package.author.display_name, release.package.name)) + temp = getTempDir() try: with ZipFile(path, 'r') as zip_ref: |