Skip to content

Commit

Permalink
Fixed CVS bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Kostya K committed Apr 7, 2018
1 parent 7b30a0b commit 2789daa
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion telegram_messages_dump/exporters/csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ def format(self, msg, exporter_context):
msg.date.isoformat(),
name,
str(re_id),
'"' + self._py_encode_basestring(content) + '"'])
'"' + str(self._py_encode_basestring(content)) + '"'])
return msg_dump_str

def begin_final_file(self, resulting_file):
Expand Down
2 changes: 1 addition & 1 deletion travis-scripts/install.linux.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pyinstaller -D -F -n telegram-messages-dump \
#Setup build env for Windows: pyinstaller+telethon
# wine pip install -I telethon==0.17
# wine pip install pyinstaller
# wine pyinstaller -n telegram-messages-dump.exe --onefile --clean --win-private-assemblies -c --noconfirm --log-level=WARN ./telegram_messages_dump/run.py --hidden-import telegram_messages_dump.exporters.text --hidden-import telegram_messages_dump.exporters.json
# wine pyinstaller -n telegram-messages-dump.exe --onefile --clean --win-private-assemblies -c --noconfirm --log-level=WARN ./telegram_messages_dump/run.py --hidden-import telegram_messages_dump.exporters.text --hidden-import telegram_messages_dump.exporters.json --hidden-import telegram_messages_dump.exporters.csv

#Package for distribution
cd ./dist
Expand Down

0 comments on commit 2789daa

Please sign in to comment.