From 21e03729a35cb3bd2440cbbc7198ac8508e6eb6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Gra=C3=B1a?= Date: Thu, 19 Apr 2012 00:28:27 -0300 Subject: [PATCH] lxml is the new default selector backend. closes #120 --- scrapy/selector/__init__.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scrapy/selector/__init__.py b/scrapy/selector/__init__.py index e9af791ac..38645828f 100644 --- a/scrapy/selector/__init__.py +++ b/scrapy/selector/__init__.py @@ -1,11 +1,11 @@ """ XPath selectors -Two backends are currently available: libxml2 and lxml - To select the backend explicitly use the SELECTORS_BACKEND variable in your -project. Otherwise, libxml2 will be tried first. If libxml2 is not available, -lxml will be used. +project settings. + +Two backends are currently available: lxml (default) and libxml2. + """ from scrapy.conf import settings