1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-21 11:27:38 +03:00

Removes un-necessary encode('utf-8')

This commit is contained in:
Athanasius 2019-09-11 16:22:39 +01:00
parent 1a518e366a
commit c3620b932b

@ -732,7 +732,7 @@ class EDLogs(FileSystemEventHandler):
# Export ship loadout as a Loadout event
def export_ship(self, filename=None):
string = json.dumps(self.ship(False), ensure_ascii=False, indent=2, separators=(',', ': ')).encode('utf-8') # pretty print
string = json.dumps(self.ship(False), ensure_ascii=False, indent=2, separators=(',', ': ')) # pretty print
if filename:
with open(filename, 'wt') as h: