Skip to content

Commit b0855e2

Browse files
committedOct 16, 2017
Fix super call
1 parent 506a831 commit b0855e2

File tree

1 file changed

+2
-2
lines changed
  • python/plugins/db_manager/db_plugins/oracle

1 file changed

+2
-2
lines changed
 

‎python/plugins/db_manager/db_plugins/oracle/QtSqlDB.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ def TimestampFromTicks(ticks):
6060
class ConnectionError(Exception):
6161

6262
def __init__(self, *args, **kwargs):
63-
super(Exception, self).__init__(*args, **kwargs)
63+
super(ConnectionError, self).__init__(*args, **kwargs)
6464

6565

6666
class ExecError(Exception):
6767

6868
def __init__(self, *args, **kwargs):
69-
super(Exception, self).__init__(*args, **kwargs)
69+
super(ExecError, self).__init__(*args, **kwargs)
7070

7171

7272
class QtSqlDBCursor(object):

0 commit comments

Comments
 (0)
Please sign in to comment.