Closes #2614: Simplify calls of super() for Python 3

This commit is contained in:
Jeremy Stretch
2018-11-27 10:52:24 -05:00
parent 1157b7f776
commit 6b1abd6a65
46 changed files with 193 additions and 193 deletions

View File

@@ -228,7 +228,7 @@ class SecretBulkImportView(BulkImportView):
messages.error(request, "No session key found for this user.")
if self.master_key is not None:
return super(SecretBulkImportView, self).post(request)
return super().post(request)
else:
messages.error(request, "Invalid private key! Unable to encrypt secret data.")