hwoarang 14/09/06 10:58:59 Modified: gwn_adds_removes.py Log: gwn_adds_removes.py: Handle the 'Done.' string at the end of the log file
Revision Changes Path 1.15 src/gwn/gwn_adds_removes.py file : http://sources.gentoo.org/viewvc.cgi/gentoo/src/gwn/gwn_adds_removes.py?rev=1.15&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo/src/gwn/gwn_adds_removes.py?rev=1.15&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo/src/gwn/gwn_adds_removes.py?r1=1.14&r2=1.15 Index: gwn_adds_removes.py =================================================================== RCS file: /var/cvsroot/gentoo/src/gwn/gwn_adds_removes.py,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- gwn_adds_removes.py 3 Aug 2014 21:14:38 -0000 1.14 +++ gwn_adds_removes.py 6 Sep 2014 10:58:59 -0000 1.15 @@ -29,6 +29,8 @@ cur = pkgs['added'] elif i.startswith('Removed'): cur = pkgs['removed'] + elif i.startswith('Done.'): + break elif not i: break else:
