Trying to save a new word list throws an attribute error:
127.0.0.1 - - [10/Nov/2023 09:29:14] "POST /wordlists/create HTTP/1.1" 500 -
Traceback (most recent call last):
File "/home/nathan/.local/share/virtualenvs/spheroscope-YF7owz4x/lib/python3.10/site-packages/flask/app.py", line 2552, in __call__
return self.wsgi_app(environ, start_response)
File "/home/nathan/.local/share/virtualenvs/spheroscope-YF7owz4x/lib/python3.10/site-packages/flask/app.py", line 2532, in wsgi_app
response = self.handle_exception(e)
File "/home/nathan/.local/share/virtualenvs/spheroscope-YF7owz4x/lib/python3.10/site-packages/flask/app.py", line 2529, in wsgi_app
response = self.full_dispatch_request()
File "/home/nathan/.local/share/virtualenvs/spheroscope-YF7owz4x/lib/python3.10/site-packages/flask/app.py", line 1825, in full_dispatch_request
rv = self.handle_user_exception(e)
File "/home/nathan/.local/share/virtualenvs/spheroscope-YF7owz4x/lib/python3.10/site-packages/flask/app.py", line 1823, in full_dispatch_request
rv = self.dispatch_request()
File "/home/nathan/.local/share/virtualenvs/spheroscope-YF7owz4x/lib/python3.10/site-packages/flask/app.py", line 1799, in dispatch_request
return self.ensure_sync(self.view_functions[rule.endpoint])(**view_args)
File "/home/nathan/spheroscope/spheroscope/auth.py", line 97, in wrapped_view
return view(**kwargs)
File "/home/nathan/spheroscope/spheroscope/wordlists.py", line 112, in create
wordlist = WordList(
File "<string>", line 4, in __init__
File "/home/nathan/.local/share/virtualenvs/spheroscope-YF7owz4x/lib/python3.10/site-packages/sqlalchemy/orm/state.py", line 566, in _initialize_instance
with util.safe_reraise():
File "/home/nathan/.local/share/virtualenvs/spheroscope-YF7owz4x/lib/python3.10/site-packages/sqlalchemy/util/langhelpers.py", line 146, in __exit__
raise exc_value.with_traceback(exc_tb)
File "/home/nathan/.local/share/virtualenvs/spheroscope-YF7owz4x/lib/python3.10/site-packages/sqlalchemy/orm/state.py", line 564, in _initialize_instance
manager.original_init(*mixed[1:], **kwargs)
File "/home/nathan/.local/share/virtualenvs/spheroscope-YF7owz4x/lib/python3.10/site-packages/sqlalchemy/orm/decl_base.py", line 2137, in _declarative_constructor
setattr(self, k, kwargs[k])
AttributeError: can't set attribute 'path'
If I create a text file in my local instance rather than through the app, the corresponding variable shows up under "active", but it doesn't get an entrance in the word list inventory; i.e. I still can't edit it via spheroscope.
Trying to save a new word list throws an attribute error:
If I create a text file in my local instance rather than through the app, the corresponding variable shows up under "active", but it doesn't get an entrance in the word list inventory; i.e. I still can't edit it via spheroscope.