Skip to content

Commit 9276ccf

Browse files
committed
the files default needs to be an empty string
Signed-off-by: vsoch <vsochat@stanford.edu>
1 parent 6b754eb commit 9276ccf

3 files changed

Lines changed: 3 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ and **Merged pull requests**. Critical items to know are:
1212
Referenced versions in headers are tagged on Github, in parentheses are for pypi.
1313

1414
## [vxx](https://github.com/urlstechie/urlschecker-python/tree/master) (master)
15+
- default for files needs to be empty string (not None) (0.0.17)
1516
- bug with incorrect return code on fail, add files flag (0.0.16)
1617
- reverting back to working client (0.0.15)
1718
- removing unused file variable (0.0.13)

urlchecker/client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def get_parser():
103103
"--files",
104104
dest="files",
105105
help="comma separated list of exact files or patterns to check.",
106-
default=None,
106+
default="",
107107
)
108108

109109
# White listing

urlchecker/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
"""
99

10-
__version__ = "0.0.16"
10+
__version__ = "0.0.17"
1111
AUTHOR = "Ayoub Malek, Vanessa Sochat"
1212
AUTHOR_EMAIL = "superkogito@gmail.com, vsochat@stanford.edu"
1313
NAME = "urlchecker"

0 commit comments

Comments
 (0)