Beispiel #1
0
 def uid2name(self, uid):
     """
     """
     try:
         return Passwd().getpwuid(uid)["pw_name"]
     except:
         return str(uid)
Beispiel #2
0
 def uid2name(self, uid):
     """
     """
     try:
         return Passwd(self.protocol.cfg).getpwuid(uid)["pw_name"]
     except:
         return str(uid)
Beispiel #3
0
 def uid2name(self, uid):
     try:
         return Passwd().getpwuid(uid)["pw_name"]
     except Exception:
         return str(uid)