Skip to content

Commit

Permalink
Merge pull request #17 from pepkit/dev
Browse files Browse the repository at this point in the history
v0.4.7
  • Loading branch information
stolarczyk committed Aug 9, 2019
2 parents 7182709 + ad30a01 commit 833c6de
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Changelog
## [0.4.7] - 2019-08-09
### Fixed
- `is_writable` function; [Issue 16](https://github.com/pepkit/ubiquerg/issues/16)

## [0.4.6] - 2019-08-08
### Added
Expand Down
2 changes: 1 addition & 1 deletion ubiquerg/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.4.6"
__version__ = "0.4.7"
4 changes: 2 additions & 2 deletions ubiquerg/system.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__author__ = "Databio Lab"
__email__ = "nathan@code.databio.org"

__all__ = ["is_command_callable"]
__all__ = ["is_command_callable", "is_writable"]


def is_command_callable(cmd):
Expand Down Expand Up @@ -51,4 +51,4 @@ def is_writable(folder, check_exist=False, create=False):
else:
# The folder didn't exist. Recurse up the folder hierarchy to make sure
# all paths are writable
return is_writeable(os.path.dirname(folder), check_exist)
return is_writable(os.path.dirname(folder), check_exist)

0 comments on commit 833c6de

Please sign in to comment.