diff --git a/testgres/node.py b/testgres/node.py
index 8e64da01..f26391e4 100644
--- a/testgres/node.py
+++ b/testgres/node.py
@@ -6,7 +6,10 @@
 import subprocess
 import time
 
-from collections import Iterable
+try:
+    from collections.abc import Iterable  # Python 3.3 and higher
+except ImportError:
+    from collections import Iterable  # Python 2
 from shutil import rmtree
 from six import raise_from, iteritems, text_type
 from tempfile import mkstemp, mkdtemp