Skip to content

Commit a835f23

Browse files
committed
fix for a bug reported by buawig@gmail.com (AttributeError: 'module' object has no attribute 'set_completer')
1 parent 2041361 commit a835f23

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

doc/THANKS

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,9 @@ abc abc <biedimc@gmx.net>
405405
Brandon E. <brandonpoc@gmail.com>
406406
for reporting a bug
407407

408+
buawig <buawig@gmail.com>
409+
for reporting a minor bug
410+
408411
Bugtrace <bugtrace@gmail.com>
409412
for reporting several bugs
410413

lib/core/readlineng.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,11 @@
1414
_readline = None
1515

1616
try:
17+
from readline import *
1718
import readline as _readline
1819
except ImportError:
1920
try:
21+
from pyreadline import *
2022
import pyreadline as _readline
2123
except ImportError:
2224
pass

0 commit comments

Comments
 (0)