diff --git a/requests_html.py b/requests_html.py index 43ca3ff..d8429bf 100644 --- a/requests_html.py +++ b/requests_html.py @@ -77,7 +77,7 @@ class BaseParser: @property def full_text(self): """The full text content (including links) of the element.""" - return self.pq.text_content() + return self.lxml.text_content() def find(self, selector, first=False, _encoding=None): """Given a jQuery selector, returns a list of element objects.""" diff --git a/setup.py b/setup.py index 41a49f7..d7f6271 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ DESCRIPTION = 'HTML Parsing for Humans.' URL = 'https://github.com/kennethreitz/requests-html' EMAIL = 'me@kennethreitz.org' AUTHOR = 'Kenneth Reitz' -VERSION = '0.3.0' +VERSION = '0.3.1' # What packages are required for this module to be executed? REQUIRED = [