diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-12-17 10:26:14 +0000 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-12-17 10:26:14 +0000 |
commit | 1d8068d79dd0c09dc5c05ce6909a49e8e7249657 (patch) | |
tree | 7bff4318031af3008cfc5526b2b17521d0fd7465 /src/backend/install.py | |
parent | 01d055a5e93439be37faf68fdfa91df0be568f4e (diff) |
upgrade : fix undefined variable in print output
Diffstat (limited to 'src/backend/install.py')
-rw-r--r-- | src/backend/install.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/install.py b/src/backend/install.py index a3bd6ec..83e2c68 100644 --- a/src/backend/install.py +++ b/src/backend/install.py @@ -55,15 +55,15 @@ def start(pkgname): else: print(sisyphus.getcolor.bright_red + "\nSource package(s) found in the mix!\n" + sisyphus.getcolor.reset) - print(sisyphus.getcolor.bright_yellow + "Use" + sisyphus.getcolor.reset + " " + "'" + - "sisyphus install" + " " + " ".join(pkgname) + " " + "--ebuild" + "'" + sisyphus.getcolor.reset) + print(sisyphus.getcolor.bright_yellow + "Use" + sisyphus.getcolor.reset + " " + + "'" + "sisyphus install" + " " + " ".join(pkgname) + " " + "--ebuild" + "'") sys.exit() else: # don't silently fail if a source package requested without the --ebuild option needs a keyword, mask, REQUIRED_USE or USE change print(sisyphus.getcolor.bright_red + "\nInvalid request!\n" + sisyphus.getcolor.reset) - print(sisyphus.getcolor.bright_yellow + "Use" + sisyphus.getcolor.reset + " " + "'" + - "sisyphus install" + " " + " ".join(pkgname) + " " + "--ebuild" + "'" + sisyphus.getcolor.reset) + print(sisyphus.getcolor.bright_yellow + "Use" + sisyphus.getcolor.reset + " " + + "'" + "sisyphus install" + " " + " ".join(pkgname) + " " + "--ebuild" + "'") sys.exit() else: print(sisyphus.getcolor.bright_red + |