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

Commit e2ea0e9

Browse files
author
Steve Peak
committed
Merge pull request #49 from arvidn/master
fix typo
2 parents 5002055 + 99e936b commit e2ea0e9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

codecov/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ def main(*argv, **kwargs):
210210
basics.add_argument('--token', '-t', default=os.getenv("CODECOV_TOKEN"), help="Private repository token. Not required for public repositories on Travis-CI, CircleCI and AppVeyor")
211211
basics.add_argument('--file', '-f', nargs="*", default=None, help="Target a specific file for uploading")
212212
basics.add_argument('--env', '-e', nargs="*", default=os.getenv("CODECOV_ENV"), help="Store environment variables to help distinguish CI builds. Example: http://bit.ly/1ElohCu")
213-
basics.add_argument('--no-fail', action="store_true", default=False, help="(DEPRECIATED default true) If Codecov fails do not fail CI build.")
213+
basics.add_argument('--no-fail', action="store_true", default=False, help="(DEPRECATED default true) If Codecov fails do not fail CI build.")
214214
basics.add_argument('--required', action="store_true", default=False, help="If Codecov fails it will exit 1: failing the CI build.")
215215

216216
gcov = parser.add_argument_group('======================== gcov ========================')
@@ -251,7 +251,7 @@ def main(*argv, **kwargs):
251251
language = None
252252

253253
if codecov.no_fail:
254-
write('(depreciated) --no-fail is now default. See --help for more information.')
254+
write('(deprecated) --no-fail is now default. See --help for more information.')
255255

256256
# Detect CI
257257
# ---------

0 commit comments

Comments
 (0)