Browse Source

Fixed ANSILOVE issue, it doesn't like color order.

It wants style then foreground not fg+style.
root 4 years ago
parent
commit
b59790e19e
1 changed files with 5 additions and 3 deletions
  1. 5 3
      talker.py

+ 5 - 3
talker.py

@@ -130,9 +130,11 @@ async def space_report():
 
     nl = "\r\n"
     reset = Style.RESET_ALL
-    cyan = merge(Fore.CYAN + Style.BRIGHT)
-    white = merge(Fore.WHITE + Style.BRIGHT)
-    green = merge(Fore.GREEN + Style.NORMAL)
+# Being backwards here confuses ansilove.  :(
+# Style first, then Fore, then Background.
+    cyan = merge(Style.BRIGHT + Fore.CYAN)
+    white = merge(Style.BRIGHT + Fore.WHITE)
+    green = merge(Style.NORMAL + Fore.GREEN)
 
     if args.report:
         # Ok, there's a base filename for the report.