diff options
author | V3n3RiX <venerix@redcorelinux.org> | 2018-11-09 21:10:25 +0000 |
---|---|---|
committer | V3n3RiX <venerix@redcorelinux.org> | 2018-11-09 21:10:25 +0000 |
commit | 6cb4daa56408c342d85df8e567581972fe7ba4c1 (patch) | |
tree | 99e420fb3f660de52b0a7bf80d1dadf9e232bcbd /src/backend | |
parent | 9143739749bbabf33fcbf7d89667fc8ccf38d6a7 (diff) |
refuse to install/uninstall/force-uninstall/search if no package name is given
Diffstat (limited to 'src/backend')
-rw-r--r-- | src/backend/libsisyphus.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/libsisyphus.py b/src/backend/libsisyphus.py index 5f18bae..ae6bd93 100644 --- a/src/backend/libsisyphus.py +++ b/src/backend/libsisyphus.py @@ -235,7 +235,7 @@ def startInstall(pkgList): portageExec.wait() syncLocalDatabase() else: - sys.exit("\n" + "Nothing to install; quitting." + "\n") + sys.exit("\n" + "No such binary; quitting." + "\n") def startUpgrade(): syncAll() |