From 2a481acbefcec506bc5ef558def1f58899e93906 Mon Sep 17 00:00:00 2001 From: Neocky Date: Tue, 23 Mar 2021 18:32:20 +0100 Subject: [PATCH] Fixed formating issues Changes: - fixed some formating issues --- src/plugin/plugin_updatechecker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugin/plugin_updatechecker.py b/src/plugin/plugin_updatechecker.py index 8804592..c775dc1 100644 --- a/src/plugin/plugin_updatechecker.py +++ b/src/plugin/plugin_updatechecker.py @@ -96,7 +96,7 @@ def checkInstalledPackage(inputSelectedObject="all"): oldPackages = 0 print(oColors.brightBlack + f"Checking: {inputSelectedObject}" + oColors.standardWhite) print("┌─────┬────────────────────────────────┬──────────────┬───────────┬───────────────────┐") - print("│ No. │ Name │ Installed V. │ Latest V. │ Update available │") + print("│ No. │ Name │ Installed V. │ Latest V. │ Update available │") print("└─────┴────────────────────────────────┴──────────────┴───────────┴───────────────────┘") try: for plugin in track(pluginList, description="Checking for updates" ,transient=True, complete_style="cyan"): @@ -168,7 +168,7 @@ def updateInstalledPackage(inputSelectedObject='all'): indexNumberUpdated = 0 print(oColors.brightBlack + f"Updating: {inputSelectedObject}" + oColors.standardWhite) print("┌─────┬────────────────────────────────┬────────────┬──────────┐") - print("│ No. │ Name │ Old V. │ New V. │") + print("│ No. │ Name │ Old V. │ New V. │") print("└─────┴────────────────────────────────┴────────────┴──────────┘") try: for plugin in track(pluginList, description="Updating" ,transient=True, complete_style="red"):