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

Commit fb61162

Browse files
committed
Merge branch 'hotfix/0.15.2'
2 parents 8457de3 + 7aa3c64 commit fb61162

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
2016-03-17 v0.15.2
2+
3+
* Summary: Hotfix to fix logging behavior when input file is not present.
4+
5+
* Fixing check for input file in redi.py. Now log the file's location only if it's there. (Nicholas Rejack)
6+
* Update README.md (Nicholas Rejack)
7+
18
2016-03-17 v0.15.1
29

310
* Summary: RED-I now accepts a file as input from the command line, using -f FILENAME.

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@
6161
# built documents.
6262
#
6363
# The short X.Y version.
64-
version = '0.15.1'
64+
version = '0.15.2'
6565
# The full version, including alpha/beta/rc tags.
66-
release = '0.15.1'
66+
release = '0.15.2'
6767

6868
# The language for content autogenerated by Sphinx. Refer to documentation
6969
# for a list of supported languages.

redi/redi.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -179,11 +179,10 @@ def main():
179179
# print input_file_path
180180
# sys.exit(0)
181181

182-
# say something nice to the people.
183-
logger.info("Using file passed in via -f switch. File name: " + input_file_path)
184-
185182
# check to see if a file was passed in
186-
if (input_file_path != ""):
183+
if (input_file_path != None):
184+
# say something nice to the people.
185+
logger.info("Using file passed in via -f switch. File name: " + input_file_path)
187186
# check to make sure its a file
188187
if os.path.isfile(input_file_path):
189188
#check to see if you can read it

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
setup(
2020
name='redi',
21-
version='0.15.1',
21+
version='0.15.2',
2222
author='https://www.ctsi.ufl.edu/research/study-development/informatics-consulting/',
2323
author_email='[email protected]',
2424
packages=find_packages(exclude=['test']),

0 commit comments

Comments
 (0)