mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-27 07:23:25 +00:00
Fix redirect error
Python bug (http://bugs.python.org/issue1927) causes raw_input to be redirected improperly between stdin/stderr on Unix systems if readline is not initialised first.
This commit is contained in:
parent
0b2c09d20b
commit
bd59f6a835
1 changed files with 1 additions and 1 deletions
2
electrum
2
electrum
|
@ -18,7 +18,7 @@
|
||||||
|
|
||||||
import re
|
import re
|
||||||
import pkgutil
|
import pkgutil
|
||||||
import sys, os, time, json
|
import sys, os, time, json, readline
|
||||||
import optparse
|
import optparse
|
||||||
import platform
|
import platform
|
||||||
from decimal import Decimal
|
from decimal import Decimal
|
||||||
|
|
Loading…
Add table
Reference in a new issue