Skip to content

Commit

Permalink
fix small bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lol-cubes committed Nov 27, 2019
1 parent 94503e6 commit 1535f75
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cl_timer/timer.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,8 @@ def update_stats():
if isfile(f'{HOME}/.cl-timer_rc'):
with open(f'{HOME}/.cl-timer_rc', 'r') as f:
rc_commands = f.read().strip().split('\n')
rc_commands.remove('')
if '' in rc_commands:
rc_commands.remove('')
for command in rc_commands:
try:
command_line(canvas, stdscr, settings, scramble_image, settings_file, session_file, times, ao5s, ao12s,
Expand Down

0 comments on commit 1535f75

Please sign in to comment.