Skip to content

Commit

Permalink
Merge pull request #51 from berrange/bad-fuzzy
Browse files Browse the repository at this point in the history
Fix incorrect "fuzzy" flags in po files when multiple langs are pulled
  • Loading branch information
sdp5 authored Apr 16, 2018
2 parents 7cd8de8 + deaabfc commit afca677
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zanataclient/publicanutil.py
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ def save_to_pofile(self, path, translations, potcontent, create_skeletons, local
poentry.occurrences = None

if entry.get('flags'):
poentry.flags = entry.get('flags')
poentry.flags = [flag for flag in entry.get('flags')]

if entry.get('context') is not None:
poentry.msgctxt = entry.get('context')
Expand Down

0 comments on commit afca677

Please sign in to comment.