Skip to content

Commit

Permalink
dtfix
Browse files Browse the repository at this point in the history
  • Loading branch information
torhve committed May 5, 2011
1 parent 533a1bf commit cddc98d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tweechat.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ def twitter_display(twitters):


text = unicode(status.text)
timestamp = dt2lt(status.created_at)
timestamp = int(dt2lt(status.created_at))
print_line( "%s%s%s%s" %(nick_color, nick, separator, text), timestamp)

def search_display(twitters):
Expand Down Expand Up @@ -282,8 +282,8 @@ def twitter_get(args=None):
pass
else:
w.prnt(get_twitter_buffer(), failwhale %'Error: %s' %u)
#except Exception, e:
# w.prnt(get_twitter_buffer(), failwhale %'Error: %s' %e)
except Exception, e:
w.prnt(get_twitter_buffer(), failwhale %'Error: %s' %e)

def twitter_buffer_input(data, buffer, input_data):
""" Read data from user in twitter buffer. """
Expand Down

0 comments on commit cddc98d

Please sign in to comment.