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
Running this against current papis main branch (although the version hasn't been updated in over a year), I would get the following error:
AttributeError: module 'papis.format' has no attribute 'Document'
caused on line 151 of main.py.
This crashes papis-rofi and makes it unusable.
This is due to an incorrect import: Document class is actually defined in papis.document, not papis.format, and was previously importable from the latter due to python shenanigans... but now that it's not imported there anymore, the code breaks. There's an easy fix, and I am about to make a PR for it.
Currently, the last release of papis (0.13) doesn't run into this issue, but once the version is bumped then papis-rofi will stop working for everyone.
The text was updated successfully, but these errors were encountered:
Running this against current papis main branch (although the version hasn't been updated in over a year), I would get the following error:
caused on line 151 of
main.py
.This crashes papis-rofi and makes it unusable.
This is due to an incorrect import:
Document
class is actually defined inpapis.document
, notpapis.format
, and was previously importable from the latter due to python shenanigans... but now that it's not imported there anymore, the code breaks. There's an easy fix, and I am about to make a PR for it.Currently, the last release of papis (0.13) doesn't run into this issue, but once the version is bumped then papis-rofi will stop working for everyone.
The text was updated successfully, but these errors were encountered: