From: Armaan Bhojwani Date: Sun, 31 Jan 2021 05:14:39 +0000 (-0500) Subject: Add semicolon in header X-Git-Tag: v0.2.0~6 X-Git-Url: https://git.armaanb.net/?p=lightcards.git;a=commitdiff_plain;h=7153c68361be00584446e88c789663cc19a0e216 Add semicolon in header --- diff --git a/lightcards/display.py b/lightcards/display.py index 59a5bca..84f3d57 100755 --- a/lightcards/display.py +++ b/lightcards/display.py @@ -78,9 +78,9 @@ def disp_card(stdscr, stack, headers, obj): disp_menu(stdscr, stack, headers, obj) else: if obj.getSide() == 0: - top = headers[obj.getSide()] + " " + str(obj.getIdx() + 1) + "\n" + top = headers[obj.getSide()] + "; " + str(obj.getIdx() + 1) + "\n" else: - top = headers[obj.getSide()] + " " + str(obj.getIdx() + 1) + \ + top = headers[obj.getSide()] + "; " + str(obj.getIdx() + 1) + \ "; " + str(stack[obj.getIdx()][0]) + "\n" stdscr.addstr(top, curses.A_BOLD)