diff options
author | Zac Medico <zmedico@gentoo.org> | 2010-10-07 00:05:26 -0700 |
---|---|---|
committer | Zac Medico <zmedico@gentoo.org> | 2010-10-07 00:12:04 -0700 |
commit | 0a7735a5feedf765b429f78e0cc0e6a1287a8f62 (patch) | |
tree | e093ccf59e49cfd8c488d554bdf807e4444f8615 | |
parent | 733b0dcddd6f8016e05cdc91567e0d8d54537926 (diff) | |
download | portage-0a7735a5feedf765b429f78e0cc0e6a1287a8f62.tar.gz portage-0a7735a5feedf765b429f78e0cc0e6a1287a8f62.tar.bz2 portage-0a7735a5feedf765b429f78e0cc0e6a1287a8f62.zip |
Fix spelling of 'wildcards' in --exclude error.
-rw-r--r-- | pym/_emerge/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/_emerge/main.py b/pym/_emerge/main.py index 97d36426d..765164efd 100644 --- a/pym/_emerge/main.py +++ b/pym/_emerge/main.py @@ -798,7 +798,7 @@ def parse_opts(tmpcmdline, silent=False): exclude.append(atom) if bad_atoms and not silent: - parser.error("Invalid Atom(s) in --exclude parameter: '%s' (only package names and slot atoms (with widlcards) allowed)\n" % \ + parser.error("Invalid Atom(s) in --exclude parameter: '%s' (only package names and slot atoms (with wildcards) allowed)\n" % \ (",".join(bad_atoms),)) if myoptions.fail_clean == "True": |