|
@@ -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.
|