diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-03-16 19:48:43 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-05-09 20:58:16 +0200 |
commit | a850add6d883d0a0daed8d1c74da5ace6572431e (patch) | |
tree | 67b2bd213c896327e2fac50e711f5f28a39ddb64 /archaeological_finds/wizards.py | |
parent | 2728c5a51c474429bea741dc469fd87ed48cee32 (diff) | |
download | Ishtar-a850add6d883d0a0daed8d1c74da5ace6572431e.tar.bz2 Ishtar-a850add6d883d0a0daed8d1c74da5ace6572431e.zip |
Changing context record of a find (refs #3080)
Diffstat (limited to 'archaeological_finds/wizards.py')
-rw-r--r-- | archaeological_finds/wizards.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_finds/wizards.py b/archaeological_finds/wizards.py index 61636aa25..fabe1039a 100644 --- a/archaeological_finds/wizards.py +++ b/archaeological_finds/wizards.py @@ -58,7 +58,7 @@ class FindWizard(Wizard): if not current_cr or self.steps.current.startswith('select-'): return context context['reminders'] = ( - (_("Operation"), unicode(current_cr.operation)), + (_(u"Operation"), unicode(current_cr.operation)), (_(u"Context record"), unicode(current_cr))) return context |