Remove some debug output.

This commit is contained in:
Jim Miller 2015-12-11 12:53:53 -06:00
parent bddd02ce1c
commit 247b12aaa8

View file

@ -132,12 +132,12 @@ class HPFanficArchiveComAdapter(BaseSiteAdapter):
val = labelspan.nextSibling
value = unicode('')
while val and not 'label' in defaultGetattr(val,'class'):
print("val:%s"%val)
# print("val:%s"%val)
if not isinstance(val,Comment):
value += unicode(val)
val = val.nextSibling
label = labelspan.string
print("label:%s\nvalue:%s"%(label,value))
# print("label:%s\nvalue:%s"%(label,value))
if 'Summary' in label:
self.setDescription(url,value)