Skip to content

Commit

Permalink
Correct accidental deletion
Browse files Browse the repository at this point in the history
  • Loading branch information
Ralph Embree authored Nov 19, 2016
1 parent ecb54b1 commit 221c29e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion chatexchange/browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,7 @@ def get_transcript_with_message(self, message_id):
'transcript/message/%s' % (message_id,))

room_soups = transcript_soup.select('.room-name a')
room_soup = room_soups[]
room_soup = room_soups[-1]
room_id = int(room_soup['href'].split('/')[-2])
room_name = room_soup.text

Expand Down

0 comments on commit 221c29e

Please sign in to comment.