You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...
File "... /django/core/management/commands/dbshell.py", line 30, in handle
connection.client.runshell(options["parameters"])
TypeError: DatabaseClient.runshell() takes 1 positional argument but 2 were given
Reason:
In .../django/db/backends/base/client.py is runshell() defined as
def runshell(self, parameters)
but in ... /django_informixdb/client.py it is defined as
def runshell(self)
This should be easy to fix :-)
Stephan
The text was updated successfully, but these errors were encountered:
./manage.py dbshell gives
...
File "... /django/core/management/commands/dbshell.py", line 30, in handle
connection.client.runshell(options["parameters"])
TypeError: DatabaseClient.runshell() takes 1 positional argument but 2 were given
Reason:
In .../django/db/backends/base/client.py is runshell() defined as
def runshell(self, parameters)
but in ... /django_informixdb/client.py it is defined as
def runshell(self)
This should be easy to fix :-)
Stephan
The text was updated successfully, but these errors were encountered: