Skip to content

Commit 3901806

Browse files
committed
corrected incorrect variable name
1 parent 19d3695 commit 3901806

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nycpython/meetup/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ def _get(self, method, limit, **params):
3030

3131
resp = requests.get(url, params=params)
3232
if resp.status_code != 200:
33-
meetup_api_logger.error('Meetup API <{}>: {}'.format(
33+
_logger.error('Meetup API <{}>: {}'.format(
3434
resp.status_code, resp.json().get('details')))
35-
meetup_api_logger.error('Meetup returned no results for {}'.format(method))
35+
_logger.error('Meetup returned no results for {}'.format(method))
3636
result = []
3737
return result
3838

0 commit comments

Comments
 (0)