File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,8 @@ def context(self):
125
125
@property
126
126
def app (self ):
127
127
if not self .context .app :
128
- raise Exception ('Not connected to any HTTP Host. Use "Create HTTP Context" keyword first.' )
128
+ raise Exception (
129
+ 'Not connected to any HTTP Host. Use "Create HTTP Context" keyword first.' )
129
130
return self .context .app
130
131
131
132
@property
@@ -291,7 +292,8 @@ def follow_response(self):
291
292
raise Exception (
292
293
"Can not follow a response without a location header." )
293
294
294
- logger .debug ("Following response, last response's Location header was %s" % location )
295
+ logger .debug (
296
+ "Following response, last response's Location header was %s" % location )
295
297
296
298
self .context .response = self .response .follow ()
297
299
You can’t perform that action at this time.
0 commit comments