Skip to content

Commit a8a583b

Browse files
committed
fix: minor cosmetic changes
1 parent 68e7180 commit a8a583b

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

github_backup/github_backup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -701,13 +701,13 @@ def _request_http_error(exc, auth, errors):
701701
def _request_url_error(template, retry_timeout):
702702
# In case of a connection timing out, we can retry a few time
703703
# But we won't crash and not back-up the rest now
704-
logger.info("{} timed out".format(template))
704+
logger.info("'{}' timed out".format(template))
705705
retry_timeout -= 1
706706

707707
if retry_timeout >= 0:
708708
return True, retry_timeout
709709

710-
raise Exception("{} timed out to much, skipping!".format(template))
710+
raise Exception("'{}' timed out to much, skipping!".format(template))
711711

712712

713713
class S3HTTPRedirectHandler(HTTPRedirectHandler):

0 commit comments

Comments
 (0)