def log(self): '''Returns the entire SVN log message (private method)''' tmp = fs.svn_fs_txn_prop(self.txn, "svn:log") if DEBUG == "True": write_debug("[log]:", tmp) return tmp
def __getitem__(self, name): """ Return the value of a given property. """ return svn_fs_txn_prop(self.txn, name)
def __author(self): '''Returns the author of this transaction''' tmp = fs.svn_fs_txn_prop(self.txn, "svn:author") if DEBUG == "True": write_debug("[author]: ", tmp) return tmp