Commit 08752ff7 authored by ibuler's avatar ibuler

[Bugfix] 回车直接登陆资产

parent 5ddb997b
......@@ -119,11 +119,12 @@ class InteractiveServer:
input_data.append(data)
def dispatch(self, opt):
print(repr(opt))
if opt is None:
return self._sentinel
elif opt.startswith("/"):
self.search_and_display(opt.lstrip("/"))
elif opt in ['p', 'P']:
elif opt in ['p', 'P', '']:
self.display_assets()
elif opt in ['g', 'G']:
self.display_asset_groups()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment