From c0b0466488102bc1fd066cf19f13873af3847972 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Sun, 22 Oct 2006 20:43:20 +0000 Subject: Don't limit the size of USE in config.load_infodir. svn path=/main/trunk/; revision=4802 --- pym/portage.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pym') 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 -- cgit v1.2.3-1-g7c22