Changeset 374
- Timestamp:
- 05/23/08 14:28:52 (6 months ago)
- Files:
-
- trunk/src/dm/dom/base.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/src/dm/dom/base.py
r359 r374 6 6 import dm.times 7 7 from dm.util.datastructure import MultiValueDict 8 from dm.dictionarywords import DB_MIGRATION_IN_PROGRESS 8 9 9 10 debug = RequiredFeature('Debug') … … 672 673 def saveSilently(self): 673 674 "Update record without raising update event." 674 self.updateLastModifiedTime() 675 if not self.dictionary[DB_MIGRATION_IN_PROGRESS]: 676 self.updateLastModifiedTime() 675 677 self.record.saveDomainObject() 676 678 … … 856 858 def getLabelValue(self): 857 859 # default to register key value 858 return s elf.getRegisterKeyValue()860 return str(self.getRegisterKeyValue()) 859 861 860 862 def getPersonalLabel(self):
