Skip to content

Commit

Permalink
fix a few bugs and upload paclage to pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
lol-cubes committed Nov 25, 2019
1 parent fbec9f0 commit 2c93214
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 0 additions & 2 deletions cl_timer/interpreter.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,6 @@ def interpret(command):
if command[-1] != '"':
words.append(command.split(' ')[-1])

logging.info(words)

if words[0] == 'alias':
if len(words) != 3:
show_error_message(f'`alias` takes exactly 2 arguments - {len(words) - 1} were given')
Expand Down
1 change: 1 addition & 0 deletions cl_timer/timer.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,7 @@ 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('')
for command in rc_commands:
try:
command_line(canvas, stdscr, settings, scramble_image, settings_file, session_file, times, ao5s, ao12s,
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="cl-timer",
version="1.0.7",
version="1.1.2",
author="Arin Khare",
author_email="[email protected]",
description="A Cubing Timer for the Terminal",
Expand Down

0 comments on commit 2c93214

Please sign in to comment.