Skip to content

Commit

Permalink
Merge pull request #109 from refgenie/bugfix
Browse files Browse the repository at this point in the history
v0.9.3
  • Loading branch information
stolarczyk authored Sep 2, 2020
2 parents f22a06d + 278151d commit 7859df1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) format.

## [0.9.3] - 2020-09-02

### Fixed
- warning in `seek` method when executed with `strict_exists=None`

## [0.9.2] - 2020-08-19

### Added
Expand Down
2 changes: 1 addition & 1 deletion refgenconf/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.9.2"
__version__ = "0.9.3"
2 changes: 1 addition & 1 deletion refgenconf/refgenconf.py
Original file line number Diff line number Diff line change
Expand Up @@ -356,7 +356,7 @@ def seek(self, genome_name, asset_name, tag_name=None, seek_key=None,
# return option2 if existence not enforced
if strict_exists is None:
_LOGGER.debug(msg)
if strict_exists is True:
elif strict_exists is True:
raise OSError(msg)
else:
warnings.warn(msg, RuntimeWarning)
Expand Down

0 comments on commit 7859df1

Please sign in to comment.