diff --git a/contrib/inventory_builder/inventory.py b/contrib/inventory_builder/inventory.py
index ab31a7eaa865dbe7fb25a598f239785520bf1718..24fb5c092cd806600b8e1ac83656a0df58351d90 100644
--- a/contrib/inventory_builder/inventory.py
+++ b/contrib/inventory_builder/inventory.py
@@ -197,8 +197,14 @@ class KubesprayInventory(object):
         reworked_hosts = []
 
         def ips(start_address, end_address):
-            start = int(ip_address(start_address).packed.hex(), 16)
-            end = int(ip_address(end_address).packed.hex(), 16)
+            try:
+                # Python 3.x
+                start = int(ip_address(start_address))
+                end   = int(ip_address(end_address))
+            except:
+                # Python 2.7
+                start = int(ip_address(unicode(start_address)))
+                end   = int(ip_address(unicode(end_address)))
             return [ip_address(ip).exploded for ip in range(start, end+1)]
 
         for host in hosts: