diff options
author | Linnnus <[email protected]> | 2024-05-02 17:23:58 +0200 |
---|---|---|
committer | Linnnus <[email protected]> | 2024-05-02 17:23:58 +0200 |
commit | ccf1392ade6855f3d34d0d8bf89f49593da8ae56 (patch) | |
tree | eeee34860a83f1860fb4d5363fc6ec837bb846d5 /notes/patching-bottle_sqlite.md | |
parent | 55bde8e73d05138a2cda3746dc4f6574973c774c (diff) |
Diffstat (limited to 'notes/patching-bottle_sqlite.md')
-rw-r--r-- | notes/patching-bottle_sqlite.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/notes/patching-bottle_sqlite.md b/notes/patching-bottle_sqlite.md new file mode 100644 index 0000000..8bde02b --- /dev/null +++ b/notes/patching-bottle_sqlite.md @@ -0,0 +1,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. |