Skip to content

Commit 80c755d

Browse files
committed
Merged in kadler/python-itoolkit/class-update (pull request #3)
Ensure classes are new-style classes on Python 2
2 parents cc35564 + a1752ee commit 80c755d

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

itoolkit/db2/idb2call.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
except ImportError:
4242
pass
4343

44-
class iDB2Call:
44+
class iDB2Call(object):
4545
"""
4646
Transport XMLSERVICE calls over DB2 connection.
4747

itoolkit/lib/ilibcall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
except ImportError:
3838
pass
3939

40-
class iLibCall:
40+
class iLibCall(object):
4141
"""
4242
Transport XMLSERVICE direct job call (within job/process calls).
4343

itoolkit/odbc/iodbccall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
# import inspect
3939
import pyodbc
4040

41-
class iODBCCall:
41+
class iODBCCall(object):
4242
"""
4343
Transport XMLSERVICE calls over ODBC connection.
4444

itoolkit/rest/irestcall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
import xml.dom.minidom
2828
# import inspect
2929

30-
class iRestCall:
30+
class iRestCall(object):
3131
"""
3232
Transport XMLSERVICE calls over standard HTTP rest.
3333

0 commit comments

Comments
 (0)