Utf-8 + README updated
This commit is contained in:
parent
b4f0e7c0eb
commit
eecdcc93bf
16
README.md
16
README.md
@ -32,11 +32,21 @@ Should be almost working and usable now, although still to be considered as **ex
|
|||||||
|
|
||||||
|
|
||||||
* Import
|
* Import
|
||||||
* working : all (file / tags / bibtex modification / bibtex retrieval / remove watermark pages)
|
* working: all (file / tags / bibtex modification / bibtex retrieval / remove watermark pages)
|
||||||
* Download
|
* Download
|
||||||
* working : all
|
* working: all
|
||||||
* Delete
|
* Delete
|
||||||
* working : all (by file and by id)
|
* working: all (by file and by id)
|
||||||
|
* List
|
||||||
|
* TODO
|
||||||
|
* Search
|
||||||
|
* TODO
|
||||||
|
* Open
|
||||||
|
* working: all
|
||||||
|
* Resync
|
||||||
|
* Testing
|
||||||
|
* Update
|
||||||
|
* Testing
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
|
2
main.py
2
main.py
@ -245,7 +245,7 @@ def downloadFile(url, filetype, manual):
|
|||||||
def openFile(ident):
|
def openFile(ident):
|
||||||
try:
|
try:
|
||||||
with open(params.folder+'index.bib', 'r', encoding='utf-8') as fh:
|
with open(params.folder+'index.bib', 'r', encoding='utf-8') as fh:
|
||||||
bibtex = BibTexParser(fh.read())
|
bibtex = BibTexParser(fh.read().encode('utf-8'))
|
||||||
bibtex = bibtex.get_entry_dict()
|
bibtex = bibtex.get_entry_dict()
|
||||||
except:
|
except:
|
||||||
tools.warning("Unable to open index file.")
|
tools.warning("Unable to open index file.")
|
||||||
|
Loading…
Reference in New Issue
Block a user