Skip to content

Commit

Permalink
👕 dot the i and cross the t
Browse files Browse the repository at this point in the history
  • Loading branch information
chfw committed Aug 10, 2019
1 parent 53f597a commit 15c43d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Fixed typing issues
- Fixed link namespace returning bytes
- Fixed broken FSURL in windows [#329](https://github.com/PyFilesystem/pyfilesystem2/issues/329)
- Fixed hidden exception at fs.close() when opening an absent zip/tar file URL [#33](https://github.com/PyFilesystem/pyfilesystem2/issues/333)
- Fixed hidden exception at fs.close() when opening an absent zip/tar file URL [#333](https://github.com/PyFilesystem/pyfilesystem2/issues/333)

## [2.4.10] - 2019-07-29

Expand Down
2 changes: 1 addition & 1 deletion fs/osfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -586,7 +586,7 @@ def geturl(self, path, purpose="download"):
# type: (Text, Text) -> Text
sys_path = self.getsyspath(path)
if purpose == "download":
return "file://" + self.getsyspath(path)
return "file://" + sys_path
elif purpose == "fs":
url_path = url_quote(sys_path)
return "osfs://" + url_path
Expand Down

0 comments on commit 15c43d9

Please sign in to comment.