Changeset 180
- Timestamp:
- 09/15/07 08:56:27 (17 years ago)
- Location:
- pykoticon/trunk
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
pykoticon/trunk/bin/pykoticon
r179 r180 268 268 def getCurrentUserName(self) : 269 269 """Retrieves the current user's name.""" 270 if isWindows:271 return win32api.GetUserName()272 else :273 try :270 try : 271 if isWindows : 272 return win32api.GetUserName() 273 else : 274 274 return pwd.getpwuid(os.geteuid())[0] 275 276 275 except : 276 return "** Unknown **" 277 277 278 278 def OnIconify(self, event) : -
pykoticon/trunk/CREDITS
r176 r180 21 21 22 22 - Georger Araujo : Fixed a charset encoding problem under MS-Windows. 23 - Rodolfo Cossalter : Fixed a problem under MS-Windows 98/Me. 23 24