mirror of
https://github.com/YunoHost-Apps/phpmyadmin_ynh.git
synced 2024-09-03 19:56:46 +02:00
[fix] lowercase keys
This commit is contained in:
parent
f901148cfa
commit
dcc31a4fcd
1 changed files with 2 additions and 2 deletions
|
@ -1,3 +1,3 @@
|
|||
import sys, json
|
||||
userlist=json.loads(sys.stdin.readlines()[0])["Users"]
|
||||
print "{0}".format("\n".join(i["Username"] for i in userlist))
|
||||
userlist=json.loads(sys.stdin.readlines()[0])["users"]
|
||||
print "{0}".format("\n".join(i["username"] for i in userlist))
|
||||
|
|
Loading…
Reference in a new issue