Skip to content

Commit 5be60b6

Browse files
committed
Fix Fix breakage which was introduced by making is_at_start a property
1 parent a7dd608 commit 5be60b6

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
@@ -512,7 +512,7 @@ def do_key_press_event(self, event):
512512
if self.list_win_visible:
513513
self.list_win.forward()
514514
else:
515-
if not self.rl_history.is_at_start():
515+
if not self.rl_history.is_at_start:
516516
self.rl_history.enter(self.current_line())
517517
self.change_line(self.rl_history.forward())
518518
self.text_buffer.place_cursor(self.get_line_end_iter())

0 commit comments

Comments
 (0)