summaryrefslogtreecommitdiff
path: root/httpretty/errors.py
diff options
context:
space:
mode:
authorGabriel Falcão <gabriel@nacaolivre.org>2018-11-04 23:34:43 +0100
committerGabriel Falcão <gabriel@nacaolivre.org>2018-11-04 23:34:43 +0100
commit067c4bda72a442e1771374f9d69a5a1c77c88de5 (patch)
tree907b5303ea0c77fbc64daa67e79920577c8edc2f /httpretty/errors.py
parent2314893ec5ab46513e91ab867d7b55a72968909e (diff)
downloadhttpretty-black.tar.gz
prettify code with blackblack
Diffstat (limited to 'httpretty/errors.py')
-rw-r--r--httpretty/errors.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/httpretty/errors.py b/httpretty/errors.py
index c69a438..1f1b94f 100644
--- a/httpretty/errors.py
+++ b/httpretty/errors.py
@@ -34,6 +34,6 @@ class HTTPrettyError(Exception):
class UnmockedError(HTTPrettyError):
def __init__(self):
super(UnmockedError, self).__init__(
- 'No mocking was registered, and real connections are '
- 'not allowed (httpretty.allow_net_connect = False).'
+ "No mocking was registered, and real connections are "
+ "not allowed (httpretty.allow_net_connect = False)."
)