X Tutup
Skip to content

Commit a7dd608

Browse files
committed
Fix breakage which was introduced by making is_at_end a property
1 parent 0773fd2 commit a7dd608

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpython/gtk_.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -503,7 +503,7 @@ def do_key_press_event(self, event):
503503
if self.list_win_visible:
504504
self.list_win.back()
505505
else:
506-
if not self.rl_history.is_at_end():
506+
if not self.rl_history.is_at_end:
507507
self.rl_history.enter(self.current_line())
508508
self.change_line(self.rl_history.back())
509509
self.text_buffer.place_cursor(self.get_line_end_iter())

0 commit comments

Comments
 (0)
X Tutup