diff --git a/kiwi_boxed_plugin/utils/fetch_files.py b/kiwi_boxed_plugin/utils/fetch_files.py index 903afe8..5051513 100644 --- a/kiwi_boxed_plugin/utils/fetch_files.py +++ b/kiwi_boxed_plugin/utils/fetch_files.py @@ -16,7 +16,10 @@ # along with kiwi-boxed-build. If not, see # import requests -import progressbar +try: + import progressbar2 as progressbar +except ImportError: + import progressbar import requests.packages.urllib3