update content package is not functional with version string
Describe the bug
when trying to install a specific version in content update it failed.
fw = firewall.Firewall(hostname="", username="")
updater.ContentUpdater(fw).check()
updater.ContentUpdater(fw).download()
updater.ContentUpdater(fw).install(version="8503-7125", sync=True)
Expected behavior
execute without error
Current behavior
Traceback (most recent call last):
File "test_update_content.py", line 41, in
Possible solution
with keyword latest it work without issue. updater.ContentUpdater(fw).install(version="latest", sync=True)
:tada: Thanks for opening your first issue here! Welcome to the community!
Is "9503-7125" downloaded before you try to invoke .install(version="9503-7125")?
Hi
Yes was already downloaded before the try.
Thks