9824: pylint error: no enable_debug, move to LOG.debug

was pull request #284
This commit is contained in:
romjerome 2016-12-21 12:16:56 +01:00
parent 5ecb140094
commit e5ca4186da

View File

@ -1152,8 +1152,7 @@ class GeneWebParser:
except UnicodeDecodeError:
pass
return( s)
return(s)
def debug( self, txt):
if enable_debug:
print(txt)
def debug(self, txt):
LOG.debug(txt)