X Tutup
Skip to content

Commit 9a6a391

Browse files
committed
Do not print socket_id causing gtk_ to show None before the repl
1 parent ffd9b28 commit 9a6a391

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
@@ -641,7 +641,7 @@ def main(args=None):
641641
gobject.idle_add(init_import_completion)
642642

643643
if not options.socket_id:
644-
print options.socket_id
644+
# print options.socket_id
645645
parent = gtk.Window()
646646
parent.connect('delete-event', lambda widget, event: gtk.main_quit())
647647

0 commit comments

Comments
 (0)
X Tutup