update for MMGen v13.3.dev14

This commit is contained in:
The MMGen Project 2022-10-29 20:12:39 +00:00
commit c53e7cc65f
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
4 changed files with 4 additions and 4 deletions

View file

@ -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:

View file

@ -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

View file

@ -1 +1 @@
3.1.dev12
3.1.dev13

View file

@ -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