separated by whitespace.
first to make sure the result is what you expect.
.TP
.BR "\-\-exclude " ATOMS
-A comma separated list of package names or slot atoms.
+A space separated list of package names or slot atoms.
Emerge won't install any ebuild or binary package that
matches any of the given package atoms.
.TP
print(desc_indent + line)
print()
print(" " + green("--exclude") + " " + turquoise("ATOMS"))
- desc = "A comma separated list of package names or slot atoms. " + \
+ desc = "A space separated list of package names or slot atoms. " + \
"Emerge won't install any ebuild or binary package that " + \
"matches any of the given package atoms."
for line in wrap(desc, desc_width):
},
"--exclude": {
- "help" :"A comma separated list of package names or slot atoms. " + \
+ "help" :"A space separated list of package names or slot atoms. " + \
"Emerge won't install any ebuild or binary package that " + \
"matches any of the given package atoms.",
if myoptions.exclude:
exclude = []
bad_atoms = []
- for x in myoptions.exclude.split(","):
+ for x in myoptions.exclude.split():
bad_atom = False
try:
atom = portage.dep.Atom(x)