remove two self instances that were missed my last commit

This commit is contained in:
Vincent Hanquez 2005-04-24 09:45:11 +00:00
parent 4fd1413266
commit 8465b76ba7
1 changed files with 1 additions and 1 deletions

View File

@ -613,7 +613,7 @@ class Chat:
tim = time.localtime()
before_str = gajim.config.get('before_time')
after_str = gajim.config.get('after_time')
format = self.before_str + '%H:%M:%S' + self.after_str
format = before_str + '%H:%M:%S' + after_str
tim_format = time.strftime(format, tim)
buffer.insert(end_iter, tim_format + ' ')