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