diff options
-rw-r--r-- | pym/portage.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage.py b/pym/portage.py index 94de3fc02..616df7e7b 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -1495,7 +1495,7 @@ class config: if myre.match(filename): try: mydata = string.strip(open(infodir+"/"+filename).read()) - if len(mydata)<2048: + if len(mydata) < 2048 or filename == "USE": if filename == "USE": binpkg_flags = "-* " + mydata self.configdict["pkg"][filename] = binpkg_flags |