File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -364,7 +364,7 @@ def parse_tv_casting_app_for_report_data_msg(tv_casting_app_info: Tuple[subproce
364
364
if 'Cluster =' in tv_casting_line :
365
365
print ('SHAO char by char of the Cluster string: ' )
366
366
result = ''
367
- for char in repr (line ):
367
+ for char in repr (tv_casting_line ):
368
368
# print(char)
369
369
result += char
370
370
print (result )
@@ -383,12 +383,12 @@ def parse_tv_casting_app_for_report_data_msg(tv_casting_app_info: Tuple[subproce
383
383
elif 'Attribute =' in tv_casting_line :
384
384
print ('SHAO char by char of the Attribute string: ' )
385
385
result = ''
386
- for char in repr (line ):
386
+ for char in repr (tv_casting_line ):
387
387
# print(char)
388
388
result += char
389
389
print (result )
390
390
391
-
391
+
392
392
attribute_value = extract_value_from_string (tv_casting_line )
393
393
if attribute_value != ATTRIBUTE_CURRENT_PLAYBACK_STATE :
394
394
print ('SHAO we entered into the mismatch attribute ID block!!!!' )
You can’t perform that action at this time.
0 commit comments