Skip to content

Commit

Permalink
Remove unused variable. (#565)
Browse files Browse the repository at this point in the history
modified:   src/ZPublisher/HTTPRequest.py
  • Loading branch information
jugmac00 authored and dataflake committed Apr 26, 2019
1 parent d5fb1ac commit 4ce8cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZPublisher/HTTPRequest.py
Expand Up @@ -1179,7 +1179,7 @@ def processInputs(
path = path[:-1]
else:
path = ''
other['PATH_INFO'] = path = "%s/%s" % (path, meth)
other['PATH_INFO'] = "%s/%s" % (path, meth)
self._hacked_path = 1

def postProcessInputs(self):
Expand Down

0 comments on commit 4ce8cad

Please sign in to comment.