"if not len(self.s)" changed to "if not self.s"

This commit is contained in:
Bob Farrell
2008-08-23 14:31:40 +01:00
parent 1d77549a05
commit 3020d488a1
+1 -1
View File
@@ -950,7 +950,7 @@ class Repl( object ):
def delete( self ):
"""Process a del"""
if not len(self.s):
if self.s:
return
if self.mvc(-1):