vitalyrodnenko / geeknote

Console client for Evernote.
2.1k stars 331 forks source link

Avoid Beautifulsoup warning #352

Closed xlarsx closed 2 years ago

xlarsx commented 8 years ago

This warning appears every time I try to edit a file:

UserWarning: No parser was explicitly specified, so I'm using the best available HTML parser for this system ("lxml"). This usually isn't a problem, but if you run this code on another system, or in a different virtual environment, it may use a different parser and behave differently.

To get rid of this warning, change this:

 BeautifulSoup([your markup])

to this:

 BeautifulSoup([your markup], "lxml")

Greetings,

weakish commented 8 years ago

duplicate #317