Skip to content

Commit

Permalink
Merge pull request #332 from pepkit/hotfix_failed_flag
Browse files Browse the repository at this point in the history
Hotfix failed flag  -- release 1.3.1
  • Loading branch information
nsheff authored Jun 23, 2021
2 parents aea9d55 + cb5c384 commit cd1c7d4
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.

## [1.3.1] -- 2021-06-18

### Changed
- Fixed a bug stating "No failed flag found" when a failed flag was found.

## [1.3.0] -- 2020-10-07

### Added
Expand Down
2 changes: 1 addition & 1 deletion looper/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.3.0"
__version__ = "1.3.1"
2 changes: 1 addition & 1 deletion looper/conductor.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ def add_sample(self, sample, rerun=False):
else:
use_this_sample = False
if not use_this_sample:
msg = "> Skipping sample because no failed flag found"
msg = "> Skipping sample because flag found"
if flag_files:
msg += ". Flags found: {}".format(flag_files)
_LOGGER.info(msg)
Expand Down

0 comments on commit cd1c7d4

Please sign in to comment.