fix ocr bug
Showing
1 changed file
with
2 additions
and
1 deletions
... | @@ -321,7 +321,8 @@ class Command(BaseCommand, LoggerMixin): | ... | @@ -321,7 +321,8 @@ class Command(BaseCommand, LoggerMixin): |
321 | if key in license_dict: | 321 | if key in license_dict: |
322 | if is_rp == '1': | 322 | if is_rp == '1': |
323 | rp_side2_list.append(license_dict) | 323 | rp_side2_list.append(license_dict) |
324 | ic_side2_list.append(license_dict) | 324 | else: |
325 | ic_side2_list.append(license_dict) | ||
325 | elif is_rp == '1': | 326 | elif is_rp == '1': |
326 | rp_side1_list.append(license_dict) | 327 | rp_side1_list.append(license_dict) |
327 | else: | 328 | else: | ... | ... |
-
Please register or sign in to post a comment