Entropy/EquoInterface:

- fix infinite loop on packages removal

git-svn-id: http://svn.sabayonlinux.org/projects/entropy/trunk@1899 cd1c1023-2f26-0410-ae45-c471fc1f0318
This commit is contained in:
lxnay
2008-05-01 14:22:22 +00:00
parent 1993b165f5
commit 78dabbbdf5
+4
View File
@@ -3927,6 +3927,10 @@ class PackageInterface:
line = old.readline()
while line:
if line.find(key) != -1:
line = old.readline()
continue
if line.find(key+":"+slot) != -1:
line = old.readline()
continue
new.write(line)
line = old.readline()