Changeset 9340 for main/waeup.kofa/trunk/src/waeup
- Timestamp:
- 15 Oct 2012, 11:04:40 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/datacenter.py
r9217 r9340 330 330 """Get a human readable datetime representation. 331 331 """ 332 date = datetime.fromtimestamp(os.path.get ctime(self.context))332 date = datetime.fromtimestamp(os.path.getmtime(self.context)) 333 333 return date.strftime("%Y-%m-%d %H:%M:%S") 334 334 … … 336 336 """Get a (machine readable) timestamp. 337 337 """ 338 return os.path.get ctime(self.context)338 return os.path.getmtime(self.context) 339 339 340 340 def getSize(self):
Note: See TracChangeset for help on using the changeset viewer.