remove fromappid = ''
This commit is contained in:
parent
7d671f73d3
commit
f765da9249
@ -341,7 +341,7 @@ class Report:
|
|||||||
if data:
|
if data:
|
||||||
try:
|
try:
|
||||||
for line in data:
|
for line in data:
|
||||||
if line and line != '':
|
if line and line[0] != '':
|
||||||
input_fromappids.append(line[0])
|
input_fromappids.append(line[0])
|
||||||
except Exception:
|
except Exception:
|
||||||
log.error(f"split {line} error", exc_info=True)
|
log.error(f"split {line} error", exc_info=True)
|
||||||
@ -364,7 +364,7 @@ class Report:
|
|||||||
if data:
|
if data:
|
||||||
try:
|
try:
|
||||||
for line in data:
|
for line in data:
|
||||||
if line and line != '':
|
if line and line[0] != '':
|
||||||
output_fromappids.append(line[0].split('_success')[0])
|
output_fromappids.append(line[0].split('_success')[0])
|
||||||
except Exception:
|
except Exception:
|
||||||
log.error(f"split {line} error", exc_info=True)
|
log.error(f"split {line} error", exc_info=True)
|
||||||
@ -383,7 +383,7 @@ class Report:
|
|||||||
if data:
|
if data:
|
||||||
try:
|
try:
|
||||||
for line in data:
|
for line in data:
|
||||||
if line and line != '':
|
if line and line[0] != '':
|
||||||
output_fromappids.append(line[0])
|
output_fromappids.append(line[0])
|
||||||
except Exception:
|
except Exception:
|
||||||
log.error(f"split {line} error", exc_info=True)
|
log.error(f"split {line} error", exc_info=True)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user