diff --git a/jdownie/repo/repo b/jdownie/repo/repo index 2165e10..9d4e0a0 100755 --- a/jdownie/repo/repo +++ b/jdownie/repo/repo @@ -53,9 +53,9 @@ def indicators(props, ind = "tl"): status_digit = "#" if props["n"] > 9 else str(props["n"] % 10) status_indicator = f"{to_keycap(status_digit)}{unstaged}" push_digit = "?" - push_indicator = " " + push_indicator = f" {up_keycap}" pull_digit = "?" - pull_indicator = " " + pull_indicator = f" {down_keycap}" if "ab" in props.keys(): push_digit = "#" if props["ab"]["push"] > 9 else str(props["ab"]["push"] % 10) push_indicator = f"{to_keycap(push_digit)}{up_keycap}"