diff options
Diffstat (limited to 'source4/scripting/python')
-rw-r--r-- | source4/scripting/python/samba/netcmd/user.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/source4/scripting/python/samba/netcmd/user.py b/source4/scripting/python/samba/netcmd/user.py index 1d84a3391c..23c7515259 100644 --- a/source4/scripting/python/samba/netcmd/user.py +++ b/source4/scripting/python/samba/netcmd/user.py @@ -208,15 +208,12 @@ class cmd_user_list(Command): res = samdb.search(domain_dn, scope=ldb.SCOPE_SUBTREE, expression=("(&(objectClass=user)(userAccountControl:%s:=%u))" % (ldb.OID_COMPARATOR_AND, dsdb.UF_NORMAL_ACCOUNT)), - attrs=["name"]) + attrs=["samaccountname"]) if (len(res) == 0): return - try: - for msg in res: - self.outf.write("%s\n" % msg["name"][0]) - except Exception, msg: - raise CommandError("Failed to get user list: %s" % msg) + for msg in res: + self.outf.write("%s\n" % msg.get("samaccountname", idx=0)) class cmd_user_enable(Command): |