Remove unused temp var

This commit is contained in:
Jean-Marie Traissard 2008-05-31 22:13:57 +00:00
parent 4dc8ad861c
commit f604ed373a
1 changed files with 3 additions and 3 deletions

View File

@ -272,10 +272,10 @@ class HistoryWindow:
# select logs for last date we have logs with contact
self.calendar.set_sensitive(True)
lastlog = gajim.logger.get_last_date_that_has_logs(self.jid, self.account)
last_log = \
gajim.logger.get_last_date_that_has_logs(self.jid, self.account)
tim = lastlog
date = time.localtime(tim)
date = time.localtime(last_log)
y, m, d = date[0], date[1], date[2]
gtk_month = gtkgui_helpers.make_python_month_gtk_month(m)