From 4e39644b003fc0e2d5fe36b50ffdf82842a95649 Mon Sep 17 00:00:00 2001 From: Christopher Thompson Date: Sat, 10 Oct 2020 00:13:40 -0400 Subject: [PATCH] Wrap long line --- pomodoroprompt.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pomodoroprompt.py b/pomodoroprompt.py index dfd881a..4d15e37 100644 --- a/pomodoroprompt.py +++ b/pomodoroprompt.py @@ -63,7 +63,9 @@ def log_step(text, utc_start, end_section=False): """ eastern = timezone('US/Eastern') start = utc_start.astimezone(eastern) - timelog_path = 'log/' + str(start.year) + '-' + format(start.month, '02') + '-' + format(start.day, '02') + '.log' + timelog_path = 'log/' + str(start.year) + '-' \ + + format(start.month, '02') + '-' \ + + format(start.day, '02') + '.log' timelog_file = Path(timelog_path) timelog_file.touch(exist_ok=True) with timelog_file.open('a') as timelog: