Skip to content

Commit

Permalink
Merge pull request #57 from IsaacJT/fix-progressbar-import
Browse files Browse the repository at this point in the history
kiwi_boxed_plugin: utils: fetch_files: improve progressbar import
  • Loading branch information
schaefi authored Sep 29, 2023
2 parents 9238a64 + cfdf5cf commit 1ffccf1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion kiwi_boxed_plugin/utils/fetch_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,10 @@
# along with kiwi-boxed-build. If not, see <http://www.gnu.org/licenses/>
#
import requests
import progressbar
try:
import progressbar2 as progressbar
except ImportError:
import progressbar
import requests.packages.urllib3


Expand Down

0 comments on commit 1ffccf1

Please sign in to comment.