Skip to content

Commit

Permalink
Fix calling super class in python 2
Browse files Browse the repository at this point in the history
  • Loading branch information
davisagli committed Jun 26, 2018
1 parent f9b7388 commit 77ca45c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ZPublisher/HTTPRequest.py
Original file line number Diff line number Diff line change
Expand Up @@ -1636,7 +1636,7 @@ class ZopeFieldStorage(FieldStorage):

def read_binary(self):
self._binary_file = True
return super(ZopeFieldStorage, self).read_binary()
return FieldStorage.read_binary(self)


# Original version: zope.publisher.browser.FileUpload
Expand Down

0 comments on commit 77ca45c

Please sign in to comment.