* [backend]Fix for Extracting zip file in the File Browser causes exception Co-authored-by: Harsh Gupta <42064744+Harshg999@users.noreply.github.com>
@@ -235,7 +235,7 @@ class Hdfs(object):
else:
LOG.info(_('%(remote_dst)s does not exist. Trying to copy.') % {'remote_dst': remote_dst})
- src = file(local_src)
+ src = open(local_src)
try:
self.create(remote_dst, permission=0o755)