Skip to content

Commit

Permalink
Changing iteritems() to six.iteritems()
Browse files Browse the repository at this point in the history
  • Loading branch information
pferate committed Mar 4, 2015
1 parent 383f4df commit 676caa7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apiclient/__init__.py
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
"""Retain apiclient as an alias for googleapiclient."""

from six import iteritems

import googleapiclient

try:
Expand Down Expand Up @@ -36,5 +38,5 @@
}

import sys
for module_name, module in _SUBMODULES.iteritems():
for module_name, module in iteritems(_SUBMODULES):
sys.modules['apiclient.%s' % module_name] = module

0 comments on commit 676caa7

Please sign in to comment.