summaryrefslogtreecommitdiff
path: root/notes/patching-bottle_sqlite.md
blob: 8bde02b3de355996d2590e6a33588ec6efd1c007 (plain)
1
2
3
4
5
6
7
8
# Patching `bottle_sqlite`

This library is a little outdated, so if you're running a version of Python
newer than 3.9, you will need to manually patch it before running.

In line 114 of `bottle_sqlite.py` a deprecated function is being used.
`getargspec()` is deprecated, swap with `getfullargspec()` and the library
should continue working.