This commit is contained in:
TheFlipside88 2022-10-02 13:09:08 +02:00
parent 50a5c57cee
commit 51b86c730d
2 changed files with 2 additions and 2 deletions

View File

@ -68,8 +68,8 @@ with Prepender(logfile) as f:
# Must write individual lines in reverse order
f.write_line(current_day+' - '+current_time+' - '+client_hostname)
# Or, use write_lines instead - that maintains order.
# with Prepender(logfile) as f:
# Or, use write_lines instead - that maintains order.
# f.write_lines(
# ['This will be line 1',
# 'This will be line 2',

View File

@ -60,8 +60,8 @@ with Prepender(logfile) as f:
# Must write individual lines in reverse order
f.write_line(current_day+' - '+current_time)
# Or, use write_lines instead - that maintains order.
# with Prepender(logfile) as f:
# Or, use write_lines instead - that maintains order.
# f.write_lines(
# ['This will be line 1',
# 'This will be line 2',