Skip to content

Commit

Permalink
silence debugging output
Browse files Browse the repository at this point in the history
  • Loading branch information
ktdreyer committed Aug 26, 2024
1 parent aa98751 commit eb63bb2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ def find_copr_nvrs(client, os_version, copr_packages):


def verrel_equal(rhel_nvr, copr_nvr):
print('RHEL: {name}-{version}-{release}'.format(**rhel_nvr))
print('Copr: {name}-{version}-{release}'.format(**copr_nvr))
# print('RHEL: {name}-{version}-{release}'.format(**rhel_nvr))
# print('Copr: {name}-{version}-{release}'.format(**copr_nvr))
return bool(rhel_nvr['version'] == copr_nvr['version'] and rhel_nvr['release'] != copr_nvr['release'])


Expand Down

0 comments on commit eb63bb2

Please sign in to comment.