Skip to content

Commit

Permalink
Merge pull request #109 from MOV-AI/dev
Browse files Browse the repository at this point in the history
fix casting to str
  • Loading branch information
duartecoelhomovai authored Aug 11, 2023
2 parents 84b153b + d1fb9e0 commit 4fff699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mobros/types/apt_cache_singleton.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __new__(cls):
logging.warning("Unable to fetch apt cache. Please check your internet connection!")

attempt += 1
logging.warning("Trying again in 15 seconds (" + attempt + " of " + max_attempts + ") ...")
logging.warning("Trying again in 15 seconds (" + str(attempt) + " of " + str(max_attempts) + ") ...")
sleep(5)

if attempt == max_attempts:
Expand Down

0 comments on commit 4fff699

Please sign in to comment.