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:05:26 -0700 |
commit | 374b0c8374915e0999ed342c0a474d0cf2548a62 (patch) | |
tree | 981e12eb7d21203f61de37a6e083ad765399cd2b | |
parent | f826f389099a1e62b03db6184529800e4aa109d0 (diff) | |
download | portage-374b0c8374915e0999ed342c0a474d0cf2548a62.tar.gz portage-374b0c8374915e0999ed342c0a474d0cf2548a62.tar.bz2 portage-374b0c8374915e0999ed342c0a474d0cf2548a62.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 fe48763d0..71ad6b42c 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": |