This repository was archived by the owner on Oct 12, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +13
-7
lines changed Expand file tree Collapse file tree 4 files changed +13
-7
lines changed Original file line number Diff line number Diff line change
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
+
1
8
2016-03-17 v0.15.1
2
9
3
10
* Summary: RED-I now accepts a file as input from the command line, using -f FILENAME.
Original file line number Diff line number Diff line change 61
61
# built documents.
62
62
#
63
63
# The short X.Y version.
64
- version = '0.15.1 '
64
+ version = '0.15.2 '
65
65
# The full version, including alpha/beta/rc tags.
66
- release = '0.15.1 '
66
+ release = '0.15.2 '
67
67
68
68
# The language for content autogenerated by Sphinx. Refer to documentation
69
69
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -179,11 +179,10 @@ def main():
179
179
# print input_file_path
180
180
# sys.exit(0)
181
181
182
- # say something nice to the people.
183
- logger .info ("Using file passed in via -f switch. File name: " + input_file_path )
184
-
185
182
# 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 )
187
186
# check to make sure its a file
188
187
if os .path .isfile (input_file_path ):
189
188
#check to see if you can read it
Original file line number Diff line number Diff line change 18
18
19
19
setup (
20
20
name = 'redi' ,
21
- version = '0.15.1 ' ,
21
+ version = '0.15.2 ' ,
22
22
author = 'https://www.ctsi.ufl.edu/research/study-development/informatics-consulting/' ,
23
23
24
24
packages = find_packages (exclude = ['test' ]),
You can’t perform that action at this time.
0 commit comments