diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-05-29 13:07:24 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2019-06-17 13:21:28 +0200 |
commit | 405b7daf54db6219572c50f3ca452f7f711023bc (patch) | |
tree | db58a8f5832234b85cc9b93f9d49bfb6160c806b /ishtar_common | |
parent | a4a1b7dd90017ba400db51a619f736e3a3058aae (diff) | |
download | Ishtar-405b7daf54db6219572c50f3ca452f7f711023bc.tar.bz2 Ishtar-405b7daf54db6219572c50f3ca452f7f711023bc.zip |
py3: unicode -> str
Diffstat (limited to 'ishtar_common')
-rw-r--r-- | ishtar_common/models_imports.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ishtar_common/models_imports.py b/ishtar_common/models_imports.py index 74a7653f1..46cf742eb 100644 --- a/ishtar_common/models_imports.py +++ b/ishtar_common/models_imports.py @@ -514,7 +514,7 @@ class ValueFormater(models.Model): verbose_name = _(u"Importer - Value format") verbose_name_plural = _(u"Importer - Value formats") - def __unicode__(self): + def __str__(self): return self.name def clean(self): |