diff options
author | Fabian Groffen <grobian@gentoo.org> | 2010-07-14 21:37:59 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2010-07-14 21:37:59 +0200 |
commit | 3ae4b531529a117d6adf4516e258fa1ac8508569 (patch) | |
tree | d83fa7dc1667edd0f246c500ef4eec305143a90a | |
parent | 3f14f5840f98630e9dbbf32ce45ac5fd6b565887 (diff) | |
download | portage-3ae4b531529a117d6adf4516e258fa1ac8508569.tar.gz portage-3ae4b531529a117d6adf4516e258fa1ac8508569.tar.bz2 portage-3ae4b531529a117d6adf4516e258fa1ac8508569.zip |
Add forgotten trailing comma.
This caused Portage to wrongly claim some FEATURES not to be valid.
-rw-r--r-- | pym/portage/const.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/const.py b/pym/portage/const.py index 6bb465629..32e7b40a5 100644 --- a/pym/portage/const.py +++ b/pym/portage/const.py @@ -88,7 +88,7 @@ SUPPORTED_FEATURES = frozenset([ "fakeroot", "fail-clean", "fixpackages", "getbinpkg", "installsources", "keeptemp", "keepwork", "lafilefixing", "lmirror", "metadata-transfer", "mirror", "multilib-strict", "news", - "noauto", "noclean", "nodoc", "noinfo", "noman", "nostrip" + "noauto", "noclean", "nodoc", "noinfo", "noman", "nostrip", "notitles", "parallel-fetch", "parse-eapi-ebuild-head", "parse-eapi-glep-55", "preserve-libs", "protect-owned", "python-trace", "sandbox", "sesandbox", "severe", "sfperms", |