diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-13 17:41:51 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-13 17:41:51 +0200 |
commit | 2f24d27cf2d91f2820b05ed2e50df51fed024552 (patch) | |
tree | 801d74c7b88686d366fa14606b68c991b4aeee3a /ishtar_common/models.py | |
parent | 9a65830d9f4d5c3b400a2da2641539cc738cbcf3 (diff) | |
download | Ishtar-2f24d27cf2d91f2820b05ed2e50df51fed024552.tar.bz2 Ishtar-2f24d27cf2d91f2820b05ed2e50df51fed024552.zip |
Imports: do not stop on m2m error. Fix model and error report on M2M - Document add M2M import field.
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index 13e91a680..86b74693f 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -3107,7 +3107,7 @@ post_save.connect(post_save_cache, sender=LicenseType) post_delete.connect(post_save_cache, sender=LicenseType) -class Document(OwnPerms, ImageModel, FullSearch): +class Document(OwnPerms, ImageModel, FullSearch, Imported): # order is important: put the image in the first match found # other will be symbolic links RELATED_MODELS = [ |