From 328f87559b6e3214866a6a6a25665c82d45232eb Mon Sep 17 00:00:00 2001 From: Eugene Brodsky Date: Thu, 2 Feb 2023 01:00:22 -0500 Subject: [PATCH] (installer) remove leftover debug logs; fix typo --- installer/installer.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/installer/installer.py b/installer/installer.py index 3ce00026b0..47f9d9ad28 100644 --- a/installer/installer.py +++ b/installer/installer.py @@ -281,7 +281,7 @@ class InvokeAiInstance: # this makes an assumption about the location of the installer package in the source tree src = Path(__file__).parents[1].expanduser().resolve() else: - # will install from PyPp + # will install from PyPi src = f"invokeai=={version}" if version is not None else "invokeai" from plumbum import FG, local @@ -308,7 +308,6 @@ class InvokeAiInstance: Configure the InvokeAI runtime directory """ - print(f'DEBUG: sys.argv = {sys.argv}') new_argv = [sys.argv[0]] for i in range(1,len(sys.argv)): el = sys.argv[i] @@ -318,7 +317,6 @@ class InvokeAiInstance: elif el in ['-y','--yes','--yes-to-all']: new_argv.append(el) sys.argv = new_argv - print(f'DEBUG: sys.argv = {sys.argv}') from messages import introduction