mirror of
https://github.com/kennethreitz-archive/bpython-gist.git
synced 2026-06-05 23:50:18 +00:00
"if not len(self.s)" changed to "if not self.s"
This commit is contained in:
+1
-1
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user