From cb44f80b2ebd3eb472a675f64d25f309f51ced93 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 26 Feb 2018 10:31:39 -0500 Subject: [PATCH] v0.3.1 Signed-off-by: Kenneth Reitz --- requests_html.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 = [