Skip to content

Commit

Permalink
Cleaned up printing
Browse files Browse the repository at this point in the history
  • Loading branch information
= committed Aug 14, 2017
1 parent 24e0beb commit bd48882
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cryptop/cryptop.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ def write_scr(stdscr, wallet, y, x):
third_pad = ' ' * (CONFIG['theme'].getint('field_length', 13) - 3)

if y >= 1:
stdscr.addnstr(0, 0, 'cryptop v0.1.8', x, curses.color_pair(2))
stdscr.addnstr(0, 0, 'cryptop v0.1.9', x, curses.color_pair(2))
if y >= 2:
header = ' COIN{}PRICE{}HELD {}VAL{}HIGH {}LOW '.format(first_pad, second_pad, third_pad, first_pad, first_pad)
stdscr.addnstr(1, 0, header, x, curses.color_pair(3))
Expand All @@ -145,7 +145,7 @@ def write_scr(stdscr, wallet, y, x):
stdscr.addnstr(y - 2, 0, 'Total Holdings: {:10} '
.format(locale.currency(total, grouping=True)), x, curses.color_pair(3))
stdscr.addnstr(y - 1, 0,
'[A] Add/update [R] Remove [S] Sort [C] Cycle sort [0\Q]Exit', x,
'[A] Add/update coin [R] Remove coin [S] Sort [C] Cycle sort [0\Q]Exit', x,
curses.color_pair(2))


Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='cryptop',
version='0.1.8',
version='0.1.9',
description='Command line Cryptocurrency Portfolio',
long_description=readme,
author='huwwp',
Expand Down

0 comments on commit bd48882

Please sign in to comment.