Browse Source

fix clear command

dev
BreakWa11 9 years ago
parent
commit
044e1539e9
  1. 6
      mujson_mgr.py

6
mujson_mgr.py

@ -110,12 +110,16 @@ class MuMgr(object):
if 'port' in user and row['port'] != user['port']:
match = False
if match:
print("clear user %s" % self.userinfo(row['user']))
row.update(up)
print("clear user [%s]" % row['user'])
self.data.save(self.config_path)
def list_user(self, user):
self.data.load(self.config_path)
if not user:
for row in self.data.json:
print("user [%s] port %s" % (row['user'], row['port']))
return
for row in self.data.json:
match = True
if 'user' in user and row['user'] != user['user']:

Loading…
Cancel
Save