diff options
author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2010-03-12 21:04:22 +0100 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2010-03-12 21:04:22 +0100 |
commit | 31b0417f7def5af5392088eec8fe6e77074d3da9 (patch) | |
tree | ed1b87592ac1a2ca4d986884def9e1217272fde0 /source4 | |
parent | b3f727e6a5f20075dd79291ff895a46e47b63e53 (diff) | |
download | samba-31b0417f7def5af5392088eec8fe6e77074d3da9.tar.gz samba-31b0417f7def5af5392088eec8fe6e77074d3da9.tar.bz2 samba-31b0417f7def5af5392088eec8fe6e77074d3da9.zip |
s4:provision.py - small output improvement
Diffstat (limited to 'source4')
-rw-r--r-- | source4/scripting/python/samba/provision.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/scripting/python/samba/provision.py b/source4/scripting/python/samba/provision.py index 0a2483790f..aa137115d3 100644 --- a/source4/scripting/python/samba/provision.py +++ b/source4/scripting/python/samba/provision.py @@ -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] |