Changeset 38996 for titan/mediathek/localhoster/lib
- Timestamp:
- 09/24/16 19:03:25 (7 years ago)
- Location:
- titan/mediathek/localhoster/lib
- Files:
-
- 1 added
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
titan/mediathek/localhoster/lib/aa_decoder.py
r38962 r38996 8 8 # Modified by Shani 9 9 import re 10 from urlresolver import common10 #from urlresolver import common 11 11 12 12 … … 188 188 result = re.search(pattern, self.encoded_str, re.DOTALL) 189 189 if result is None: 190 common.log_utils.log_debug("AADecoder: data not found")190 # common.log_utils.log_debug("AADecoder: data not found") 191 191 return False 192 192 … … 202 202 # Check new char 203 203 if data.find(begin_char) != 0: 204 common.log_utils.log_debug("AADecoder: data not found")204 # common.log_utils.log_debug("AADecoder: data not found") 205 205 return False 206 206 … … 229 229 230 230 if str_char == "": 231 common.log_utils.log_debug("no match : ")232 common.log_utils.log_debug(data + "\nout = " + out + "\n")231 # common.log_utils.log_debug("no match : ") 232 # common.log_utils.log_debug(data + "\nout = " + out + "\n") 233 233 return False 234 234 # print 'sofar', str_char, radix,out … … 238 238 239 239 if out == "": 240 common.log_utils.log_debug("no match : " + data)240 # common.log_utils.log_debug("no match : " + data) 241 241 return False 242 242
Note: See TracChangeset
for help on using the changeset viewer.