summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
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
commit405b7daf54db6219572c50f3ca452f7f711023bc (patch)
treedb58a8f5832234b85cc9b93f9d49bfb6160c806b
parenta4a1b7dd90017ba400db51a619f736e3a3058aae (diff)
downloadIshtar-405b7daf54db6219572c50f3ca452f7f711023bc.tar.bz2
Ishtar-405b7daf54db6219572c50f3ca452f7f711023bc.zip
py3: unicode -> str
-rw-r--r--ishtar_common/models_imports.py2
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):