Skip to content

Commit

Permalink
patch
Browse files Browse the repository at this point in the history
  • Loading branch information
lbr38 committed Sep 23, 2024
1 parent 04c1d13 commit ef841fa
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/controllers/Package/Dnf.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ def get_available_version(self, package):
# Quit if an error occurred
if result.returncode != 0:
raise Exception('could not retrieve available version of package ' + package + ': ' + result.stderr)

# TODO debug
print('Available version of ' + package + ': ' + result.stdout.strip())

return result.stdout.strip()

Expand Down

0 comments on commit ef841fa

Please sign in to comment.