diff options
author | mathieui <mathieui@mathieui.net> | 2013-01-21 19:45:19 +0100 |
---|---|---|
committer | mathieui <mathieui@mathieui.net> | 2013-01-21 19:45:19 +0100 |
commit | 6a81c021e18365c15703db868a9904eb196c7e03 (patch) | |
tree | 331776a85d628c6a45f28d3c0600caaa0379e98f /src/core.py | |
parent | 43e01ce4a6b7aca0bd26af5b432449afc4817b90 (diff) | |
download | poezio-6a81c021e18365c15703db868a9904eb196c7e03.tar.gz poezio-6a81c021e18365c15703db868a9904eb196c7e03.tar.bz2 poezio-6a81c021e18365c15703db868a9904eb196c7e03.tar.xz poezio-6a81c021e18365c15703db868a9904eb196c7e03.zip |
Fix it for real.
Diffstat (limited to 'src/core.py')
-rw-r--r-- | src/core.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/src/core.py b/src/core.py index e06007bf..7b536faa 100644 --- a/src/core.py +++ b/src/core.py @@ -1705,9 +1705,12 @@ class Core(object): if password is None: # try to use a saved password password = config.get_by_tabname('password', None, room, fallback=False) if tab and not tab.joined: - delta = datetime.now() - tab.last_connection - seconds = delta.seconds + delta.days * 24 * 3600 if tab.last_connection is not None else 0 - seconds = int(seconds) + if tab.last_connection: + delta = datetime.now() - tab.last_connection + seconds = delta.seconds + delta.days * 24 * 3600 if tab.last_connection is not None else 0 + seconds = int(seconds) + else: + seconds = 0 muc.join_groupchat(self.xmpp, room, nick, password, histo_length, current_status.message, current_status.show, seconds=seconds) if not tab: |