diff options
Diffstat (limited to 'ishtar_common/models_imports.py')
-rw-r--r-- | ishtar_common/models_imports.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar_common/models_imports.py b/ishtar_common/models_imports.py index 4fa1abb4a..5712a1936 100644 --- a/ishtar_common/models_imports.py +++ b/ishtar_common/models_imports.py @@ -899,7 +899,7 @@ def delayed_import(import_pk): try: imp = Import.objects.get(pk=import_pk) except Import.DoesNotExist: - pass + return imp.importation() @@ -908,7 +908,7 @@ def delayed_check(import_pk): try: imp = Import.objects.get(pk=import_pk) except Import.DoesNotExist: - pass + return imp.check_modified() |