diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-12 15:43:15 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2021-02-28 12:15:24 +0100 |
commit | 13b9ef1c26bb89349a15be94db7d01512e270d5a (patch) | |
tree | bb7c35ca850f60028c576ee42e3fb95db20a64be /archaeological_operations/utils.py | |
parent | 7e6c628ff9f4d27609efda613b790f87bbeacea1 (diff) | |
download | Ishtar-13b9ef1c26bb89349a15be94db7d01512e270d5a.tar.bz2 Ishtar-13b9ef1c26bb89349a15be94db7d01512e270d5a.zip |
Refactor - clean
Diffstat (limited to 'archaeological_operations/utils.py')
-rw-r--r-- | archaeological_operations/utils.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/archaeological_operations/utils.py b/archaeological_operations/utils.py index 801cc6ea4..55fb9ef76 100644 --- a/archaeological_operations/utils.py +++ b/archaeological_operations/utils.py @@ -337,12 +337,12 @@ def parse_comment_addr_nature(nature, addr, owner): nature = parse_string(nature) comments = [] if nature: - comments += [u"Aménagement :", nature] + comments += ["Aménagement :", nature] if addr: - comments += [u"Adresse :", addr] + comments += ["Adresse :", addr] if not comments: return "" - return u"\n".join(comments) + return "\n".join(comments) # si pas de start date : premier janvier de year |