Skip to content

Commit

Permalink
Update docs. Small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
utek committed Jun 11, 2016
1 parent 7ad4f8b commit b25ff23
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
15 changes: 14 additions & 1 deletion docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,23 @@
Changelog
===========

-------
1.0.0
-------

- Rename to `pyseaweed`

-------
0.3.5
-------

- Code cleanup
- Adds ability to use `requests.Session()`

-------
0.3.3
-------

- Function get_file_size added
- Function file_exists added
- upload_file changed to accept file like object and path
- upload_file changed to accept file like object and path
2 changes: 1 addition & 1 deletion pyseaweed/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# vi:si:et:sw=4:sts=4:ts=4


__version__ = "1.0.0"
__version__ = "1.0.1"
2 changes: 1 addition & 1 deletion pyseaweed/weed.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def get_file_url(self, fid, public=True):
"fid must be in format: <volume_id>,<file_name_hash>")
file_location = self.get_file_location(volume_id)
volume_url = file_location.public_url if public else file_location.url
url = "http://{volume_urls}/{fid}".format(
url = "http://{volume_url}/{fid}".format(
volume_url=volume_url, fid=fid)
return url

Expand Down

0 comments on commit b25ff23

Please sign in to comment.