Skip to content

Commit

Permalink
Merge pull request #116 from fedora-infra/fix/broken_latest_meeting
Browse files Browse the repository at this point in the history
Fix latest meeting button
  • Loading branch information
cydrobolt authored May 3, 2017
2 parents 2c81c5e + dc95536 commit 0aec536
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mote/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

import flask, random, string, json, util, re
import dateutil.parser, requests, collections
import logging
import logging, soke

from six.moves import html_parser as html_parser_six

Expand Down Expand Up @@ -345,7 +345,7 @@ def sresults():
type = group_type,
avail_dates = avail_dates,
meetbot_location = config.meetbot_prefix,
latest_meeting = next(reversed(avail_dates.items()[0][1].items()[-1][1]))
latest_meeting = avail_dates.items()[0][1].items()[0][1][0]
)


Expand Down

0 comments on commit 0aec536

Please sign in to comment.