update for MMGen v13.3.dev14
This commit is contained in:
parent
3a972f2149
commit
c53e7cc65f
4 changed files with 4 additions and 4 deletions
|
|
@ -61,7 +61,7 @@ class Display(PollDisplay):
|
|||
return await rpc.call('disconnectnode',addr)
|
||||
|
||||
def get_input(self):
|
||||
s = get_char(immed_chars='q0123456789',prehold_protect=False,num_chars=1)
|
||||
s = get_char(immed_chars='q0123456789',prehold_protect=False,num_bytes=1)
|
||||
if not is_int(s):
|
||||
return s
|
||||
with self.info_lock:
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ class PollDisplay():
|
|||
self.display_kill_flag = threading.Event()
|
||||
|
||||
def get_input(self):
|
||||
return get_char(immed_chars='q',prehold_protect=False,num_chars=1)
|
||||
return get_char(immed_chars='q',prehold_protect=False,num_bytes=1)
|
||||
|
||||
async def process_input(self,rpc):
|
||||
return True
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
3.1.dev12
|
||||
3.1.dev13
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@ python_requires = >=3.7
|
|||
include_package_data = True
|
||||
|
||||
install_requires =
|
||||
mmgen>=13.3.dev13
|
||||
mmgen>=13.3.dev14
|
||||
|
||||
packages =
|
||||
mmgen_node_tools
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue