diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-09 13:09:00 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2018-08-13 18:26:04 +0200 |
commit | a9597946a8c9a1a7de2c590ef0b87d2949994920 (patch) | |
tree | 65cfe7698eb328526dca64e7f36a66aa8b545f73 /ishtar_common/models.py | |
parent | fccd2510276e510132d121cd88e76d62b1899122 (diff) | |
download | Ishtar-a9597946a8c9a1a7de2c590ef0b87d2949994920.tar.bz2 Ishtar-a9597946a8c9a1a7de2c590ef0b87d2949994920.zip |
Record quality: migrate to a type
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r-- | ishtar_common/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py index e2b1d5b02..678e2ce41 100644 --- a/ishtar_common/models.py +++ b/ishtar_common/models.py @@ -652,6 +652,7 @@ class GeneralType(Cached, models.Model): PREFIX_EMPTY = " " PREFIX_MEDIUM = "├ " PREFIX_LAST = "└ " + PREFIX_CODES = [u"\u2502", u"\u251C", u"\u2514"] @classmethod def _get_childs(cls, item, dct, prefix=0, instances=False, exclude=[], |