Commit 1b07bcdf by Sarina Canelake

Merge pull request #6949 from stvstnfrd/gettext/empty

Remove superfluous empty string check
parents 7da15ea1 405f03a6
......@@ -137,7 +137,7 @@ def localize_checklist_text(checklist):
# Localize checklist items
for item in checklist.get('items'):
item['short_description'] = ugettext(item['short_description'])
item['long_description'] = ugettext(item['long_description']) if item['long_description'] != '' else u''
item['action_text'] = ugettext(item['action_text']) if item['action_text'] != "" else u""
item['long_description'] = ugettext(item['long_description'])
item['action_text'] = ugettext(item['action_text'])
return checklist
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment