This just started happening today when I ran 'dnf update':
Tracer: Program 'tracer' crashed with following error:
/usr/lib/python2.7/site-packages/bs4/__init__.py:166: 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")
markup_type=markup_type))
Reported as https://bugzilla.redhat.com/show_bug.cgi?id=1243787
poc
On Thu, 16 Jul 2015 11:08:06 +0100 Patrick O'Callaghan pocallaghan@gmail.com wrote:
This just started happening today when I ran 'dnf update':
Tracer: Program 'tracer' crashed with following error: /usr/lib/python2.7/site-packages/bs4/__init__.py:166: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") markup_type=markup_type))Reported as https://bugzilla.redhat.com/show_bug.cgi?id=1243787
Might be a duplicate of https://bugzilla.redhat.com/show_bug.cgi?id=1240115 that I filed a while back.
kevin
On Thu, 2015-07-16 at 17:46 -0600, Kevin Fenzi wrote:
On Thu, 16 Jul 2015 11:08:06 +0100 Patrick O'Callaghan pocallaghan@gmail.com wrote:
This just started happening today when I ran 'dnf update':
Tracer: Program 'tracer' crashed with following error: /usr/lib/python2.7/site-packages/bs4/__init__.py:166: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") markup_type=markup_type))Reported as https://bugzilla.redhat.com/show_bug.cgi?id=1243787
Might be a duplicate of https://bugzilla.redhat.com/show_bug.cgi?id=1240115 that I filed a while back.
Thanks. tracer-0.5.9-3.fc22.noarch.rpm from Koji seems to fix it.
poc