8000 PEP8 · Twilio-api/twilio-python@f434ec6 · GitHub
[go: up one dir, main page]

Skip to content

Commit f434ec6

Browse files
author
Doug Black
committed
PEP8
1 parent cc3e20d commit f434ec6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

twilio/__init__.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,10 @@ def __init__(self, status, uri, msg="", code=None):
2727
def __str__(self):
2828
if self.code:
2929
error_message = "HTTP ERROR %s: %s \n\n " \
30-
"Please see: https://api.twilio.com/docs/errors/%s for more information. \n\n" \
31-
"Requested URI: %s" % (self.status, self.msg, str(self.code), self.uri)
30+
"Please see: https://api.twilio.com/docs/errors/%s " \
31+
"for more information. \n\n" "Requested URI: %s" 5167 % (
32+
self.status, self.msg, str(self.code), self.uri
33+
)
3234
else:
3335
error_message = "HTTP ERROR %s: %s \n %s" % (self.status, self.msg, self.uri)
3436

0 commit comments

Comments
 (0)
0