1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-08 16:59:09 +03:00

s4:provision.py - small output improvement

This commit is contained in:
Matthias Dieter Wallnöfer
2010-03-12 21:04:22 +01:00
parent b3f727e6a5
commit 31b0417f7d

View File

@ -219,7 +219,7 @@ def findnss(nssfn, names):
return nssfn(name)
except KeyError:
pass
raise KeyError("Unable to find user/group %r" % names)
raise KeyError("Unable to find user/group in %r" % names)
findnss_uid = lambda names: findnss(pwd.getpwnam, names)[2]