We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cc0a071 commit d77901fCopy full SHA for d77901f
legistar/events.py
@@ -167,7 +167,8 @@ def events(self, since_datetime=None):
167
yield api_event, web_event
168
169
else:
170
- self.warning('API event could not be found in web interface: {0}{1}'.format(events_url, api_event['EventId']))
+ event_url = '{0}/events/{1}'.format(self.BASE_URL, api_event['EventId'])
171
+ self.warning('API event could not be found in web interface: {0}'.format(event_url))
172
continue
173
174
def api_events(self, since_datetime=None):
0 commit comments