From 4b08b0a67f2673b4104ae158af642df27ed77829 Mon Sep 17 00:00:00 2001 From: TuxPowered Date: Thu, 10 Nov 2022 16:51:33 -0800 Subject: [PATCH] Corrected uninstall Adjusted typo preventing uninstall from running --- server/setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/server/setup.py b/server/setup.py index da2a5ac..fb369a7 100644 --- a/server/setup.py +++ b/server/setup.py @@ -34,7 +34,7 @@ if args.reset != 'DEFAULT': sel = 'R' if interactive: - while sel not in ['I', 'U', 'B', 'Q']: + while sel not in ['I', 'R', 'B', 'Q']: sel = input('[I]nstall, [R]eset, [B]uy Pritunl, [Q]uit? ').upper() print() @@ -97,4 +97,4 @@ elif sel == 'B': except: pass elif sel == 'Q': - print('Bye!') \ No newline at end of file + print('Bye!')