Skip to content

Commit

Permalink
Fix incorrect parameter passing in ios filesystem
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholas FitzRoy-Dale committed Oct 18, 2023
1 parent d97d1ce commit 0cce9df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rime/filesystem/ios.py
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ def getsize(self, path):
return os.path.getsize(os.path.join(self.root, self._converter.get_hashed_pathname(path)))

def ios_open_raw(self, path, mode):
return open(os.path.join(self.root, path, mode))
return open(os.path.join(self.root, path), mode)

def open(self, path):
# TODO: Should cope with blobs in the manifest too
Expand Down

0 comments on commit 0cce9df

Please sign in to comment.