Skip to content

Commit

Permalink
__init__() parameter mismatch
Browse files Browse the repository at this point in the history
  • Loading branch information
nakagami committed Apr 9, 2011
1 parent b8e6b8c commit ef3e8d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion firebirdsql/fbcore.py
Expand Up @@ -1234,7 +1234,8 @@ def __init__(self, dsn=None, user=None, password=None, host=None,
class service_mgr(BaseConnect):
def __init__(self, dsn=None, user=None, password=None, host=None,
database=None, charset=DEFAULT_CHARSET, port=3050):
BaseConnect.__init__(self, dsn, user, password, charset, port)
BaseConnect.__init__(self, dsn=dsn, user=user, password=password,
host=host, database=database, charset=charset, port=port)
self._op_connect()
self._op_accept()
self._op_service_attach()
Expand Down

0 comments on commit ef3e8d8

Please sign in to comment.