Skip to content
Snippets Groups Projects
Commit 6e54e213 authored by Pavel Kácha's avatar Pavel Kácha
Browse files

Fix incomplete Request.__str__ (thx krkos@cesnet.cz)

parent 2d905988
No related branches found
No related tags found
No related merge requests found
...@@ -247,7 +247,7 @@ class Request(Object): ...@@ -247,7 +247,7 @@ class Request(Object):
def __str__(self): def __str__(self):
return "%s()" % (type(self).__name__, str(self.env), str(self.client)) return "%s(env='%s', client='%s')" % (type(self).__name__, str(self.env), str(self.client))
def reset(self, env=None, client=None, path=None, req_id=None): def reset(self, env=None, client=None, path=None, req_id=None):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment