Browse Source

Deprecation message, removed debug print

Added deprecation message and removed a debug print statement
pull/67/head
Weilbyte 4 years ago
committed by GitHub
parent
commit
5ef12fe0d8
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      PVEDiscordDark.py

5
PVEDiscordDark.py

@ -141,7 +141,7 @@ def uninstallTheme():
def doHeader():
cprint(colors.HEADER, '[~]', True, True)
cprint(colors.NORMAL, ' PVEDiscordDark Utility\n', False, True)
cprint(colors.NORMAL, ' PVEDiscordDark Utility (DEPRECATED)\nThis installer is now deprecated, please use PVEDiscordDark.sh\n', False, True)
def doMainMenu():
clear()
@ -166,7 +166,7 @@ def doMainMenu():
doMainMenu()
def main():
parser = argparse.ArgumentParser(description='PVEDiscordDark Theme Utility')
parser = argparse.ArgumentParser(description='PVEDiscordDark Theme Utility (DEPRECATED)')
parser.add_argument('--action', '-a', choices=['install', 'uninstall'], help='action for unattended mode')
args = parser.parse_args()
global ACTION
@ -176,7 +176,6 @@ def main():
time.sleep(0.5)
if ACTION == None:
try:
print('mm')
doMainMenu()
except KeyboardInterrupt:
print('\n')

Loading…
Cancel
Save