Skip to content

Commit

Permalink
Merge pull request #81 from merkato/master
Browse files Browse the repository at this point in the history
encode last_nominatim_places item to UTF-8
  • Loading branch information
Gustry authored Jun 10, 2016
2 parents 0f3e2c0 + 6636182 commit c8db28b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/QuickOSMWidget.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def nominatim_value(self):

f = open(self.last_nominatim_places_filepath, 'w')
for item in new_list:
f.write("%s\n" % item)
f.write("%s\n" % item.encode("UTF-8"))
f.close()

self.init_nominatim_autofill()
Expand Down

0 comments on commit c8db28b

Please sign in to comment.