We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 12a0ee8 + 89f2013 commit 6dbf1aeCopy full SHA for 6dbf1ae
dyn/__init__.py
@@ -5,7 +5,7 @@
5
6
Requires Python 2.6 or higher, or the "simplejson" package.
7
"""
8
-version_info = (1, 8, 3)
+version_info = (1, 8, 4)
9
__name__ = 'dyn'
10
__doc__ = 'A python wrapper for the DynDNS and DynEmail APIs'
11
__author__ = '''
dyn/tm/services/dsf.py
@@ -2,7 +2,10 @@
2
"""This module contains wrappers for interfacing with every element of a
3
Traffic Director (DSF) service.
4
-from collections import Iterable
+try:
+ from collections.abc import Iterable
+except ImportError:
+ from collections import Iterable
from dyn.compat import force_unicode, string_types
from dyn.tm.utils import APIList, Active
from dyn.tm.errors import DynectInvalidArgumentError
0 commit comments