Skip to content

Commit

Permalink
Fix super call
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Oct 16, 2017
1 parent 506a831 commit b0855e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/plugins/db_manager/db_plugins/oracle/QtSqlDB.py
Expand Up @@ -60,13 +60,13 @@ def TimestampFromTicks(ticks):
class ConnectionError(Exception):

def __init__(self, *args, **kwargs):
super(Exception, self).__init__(*args, **kwargs)
super(ConnectionError, self).__init__(*args, **kwargs)


class ExecError(Exception):

def __init__(self, *args, **kwargs):
super(Exception, self).__init__(*args, **kwargs)
super(ExecError, self).__init__(*args, **kwargs)


class QtSqlDBCursor(object):
Expand Down

0 comments on commit b0855e2

Please sign in to comment.