Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/0.15.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
nrejac committed Mar 17, 2016
2 parents 8457de3 + 7aa3c64 commit fb61162
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 7 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
2016-03-17 v0.15.2

* Summary: Hotfix to fix logging behavior when input file is not present.

* Fixing check for input file in redi.py. Now log the file's location only if it's there. (Nicholas Rejack)
* Update README.md (Nicholas Rejack)

2016-03-17 v0.15.1

* Summary: RED-I now accepts a file as input from the command line, using -f FILENAME.
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@
# built documents.
#
# The short X.Y version.
version = '0.15.1'
version = '0.15.2'
# The full version, including alpha/beta/rc tags.
release = '0.15.1'
release = '0.15.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
7 changes: 3 additions & 4 deletions redi/redi.py
Original file line number Diff line number Diff line change
Expand Up @@ -179,11 +179,10 @@ def main():
# print input_file_path
# sys.exit(0)

# say something nice to the people.
logger.info("Using file passed in via -f switch. File name: " + input_file_path)

# check to see if a file was passed in
if (input_file_path != ""):
if (input_file_path != None):
# say something nice to the people.
logger.info("Using file passed in via -f switch. File name: " + input_file_path)
# check to make sure its a file
if os.path.isfile(input_file_path):
#check to see if you can read it
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name='redi',
version='0.15.1',
version='0.15.2',
author='https://www.ctsi.ufl.edu/research/study-development/informatics-consulting/',
author_email='[email protected]',
packages=find_packages(exclude=['test']),
Expand Down

0 comments on commit fb61162

Please sign in to comment.