imported patch selstrfix.diff stable
authorSylvain Thénault <sylvain.thenault@logilab.fr>
Tue, 06 Jul 2010 09:42:16 +0200
branchstable
changeset 5899 11cecbaeb731
parent 5898 5630bd8f98d9
child 5900 002af94623d3
imported patch selstrfix.diff
appobject.py
--- a/appobject.py	Tue Jul 06 09:42:13 2010 +0200
+++ b/appobject.py	Tue Jul 06 09:42:16 2010 +0200
@@ -204,7 +204,7 @@
         return int(not score)
 
     def __str__(self):
-        return 'NOT(%s)' % super(NotSelector, self).__str__()
+        return 'NOT(%s)' % self.selector
 
 
 class yes(Selector):