From 3c05fbb6a975b0cd4cea53919a20cff67bb909ac Mon Sep 17 00:00:00 2001 From: Pablo Hoffman Date: Wed, 5 Sep 2012 15:54:23 -0300 Subject: [PATCH] removed redundant comment --- scrapy/utils/python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scrapy/utils/python.py b/scrapy/utils/python.py index aff8720ae..53158fa92 100644 --- a/scrapy/utils/python.py +++ b/scrapy/utils/python.py @@ -164,7 +164,7 @@ def get_func_args(func, stripself=False): else: raise TypeError('%s is not callable' % type(func)) if stripself: - func_args.pop(0) # self + func_args.pop(0) return func_args def equal_attributes(obj1, obj2, attributes):