Skip to content

Commit

Permalink
issue #63 - revert logging additions
Browse files Browse the repository at this point in the history
  • Loading branch information
jantman committed Aug 5, 2015
1 parent 33ceed6 commit f9654cd
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions gitlab/__init__.py
Expand Up @@ -26,9 +26,6 @@
import requests
import six

import logging
logger = logging.getLogger(__name__)

__title__ = 'python-gitlab'
__version__ = '0.9.1'
__author__ = 'Gauvain Pocentek'
Expand Down Expand Up @@ -352,7 +349,6 @@ def list(self, obj_class, **kwargs):
if 'next' in r.links and 'url' in r.links['next']:
args = kwargs.copy()
args['next_url'] = r.links['next']['url']
logger.debug("Iterating results 'next' link: %s", args['next_url'])
results.extend(self.list(obj_class, **args))
return results
else:
Expand Down

0 comments on commit f9654cd

Please sign in to comment.