Exemple #1
0
 def __loadComment(self, rev):
     try:
         stat = Connector().stat(rev, [self.__store])
         mtime = str(stat.mtime())
         comment = stat.comment()
         if comment:
             return mtime + " - " + comment
         else:
             return mtime
     except IOError:
         return "???"
Exemple #2
0
 def __loadComment(self, rev):
     try:
         stat = Connector().stat(rev, [self.__store])
         mtime = str(stat.mtime())
         comment = stat.comment()
         if comment:
             return mtime + " - " + comment
         else:
             return mtime
     except IOError:
         return "???"