Skip to content

Commit

Permalink
Fix parsing issue in rpmdiff checker
Browse files Browse the repository at this point in the history
Signed-off-by: Nikola Forró <nforro@redhat.com>
  • Loading branch information
nforro committed Jan 17, 2022
1 parent ae64710 commit 541f84f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rebasehelper/plugins/checkers/rpmdiff.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def _analyze_logs(cls, output, results_dict):
if [x for x in removed_things if x in line]:
continue

fields = line.strip().split()
fields = line.strip().split(maxsplit=1)
logger.verbose(fields)
if line.startswith('removed'):
results_dict['removed'].append(fields[1])
Expand Down

0 comments on commit 541f84f

Please sign in to comment.