-
Notifications
You must be signed in to change notification settings - Fork 113
Open
Description
I succesfully installed nvpy on windows like this:
- in powershell, type
python, this prompts you to install python 3.8 in the windows store - install nvpy with
pip install nvpy - run nvpy with
python -m nvpy
I can start nvpy, but if I try to add a new note, it crashes, and after I closed it, it now crashes immediately on opening. It says "An error occured during housekeeping. list index out of range"
It gives this exception:
\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.8_qbz5n2kfra8p0\LocalCache\local-packages\Python38\site-packages\nvpy\view.py", line 532, in append
self.text.insert(tk.END, u'{0:<{w}}'.format(title[:cellwidth - 1], w=cellwidth), ("title,"))
TypeError: slice indices must be integers or None or have an __index__ method
and during the handling of that another exception occured (I cannot copy paste it, because it shows in a window and not in the terminal) in line 667 of view.py "IndexError: list index out of range"
I'm not sure what's going on here. I use nvpy without simplenote, but I've been able to do that without problems on Ubuntu for years.
ETA: I also got errors when I tried the zipped version, I think it was the same error, but I didn't write it down, so I'm not sure.