Skip to content

Commit ea1e13e

Browse files
authored
Merge pull request #30 from urlstechie/bug/files-default
Bug/files default
2 parents 6b754eb + 6ff8d58 commit ea1e13e

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
name: docker-deploy
22

33
on:
4-
release:
5-
types: [published, created, edited]
4+
push:
5+
branches:
6+
- master
67

78
jobs:
89
testing-docker:

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)