From 80a3fcc7d578d4624c2fc9210b10c14d8fb2ddde Mon Sep 17 00:00:00 2001 From: Ryan Ly Date: Tue, 12 Nov 2019 14:54:22 -0800 Subject: [PATCH] Fix broken bitly link in help --- codecov/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codecov/__init__.py b/codecov/__init__.py index ea12bf53..6b3205c3 100644 --- a/codecov/__init__.py +++ b/codecov/__init__.py @@ -230,7 +230,7 @@ def main(*argv, **kwargs): gcov.add_argument('--gcov-args', default='', help="extra arguments to pass to gcov") advanced = parser.add_argument_group('======================== Advanced ========================') - advanced.add_argument('-X', '--disable', nargs="*", default=[], help="Disable features. Accepting **search** to disable crawling through directories, **detect** to disable detecting CI provider, **gcov** disable gcov commands, `pycov` disables running python `coverage xml`, **fix** to disable report adjustments http://bit.ly/1O4eBpt") + advanced.add_argument('-X', '--disable', nargs="*", default=[], help="Disable features. Accepting **search** to disable crawling through directories, **detect** to disable detecting CI provider, **gcov** disable gcov commands, `pycov` disables running python `coverage xml`, **fix** to disable report adjustments https://docs.codecov.io/docs/fixing-reports") advanced.add_argument('--root', default=None, help="Project directory. Default: current direcory or provided in CI environment variables") advanced.add_argument('--commit', '-c', default=None, help="Commit SHA, set automatically") advanced.add_argument('--prefix', '-P', default=None, help="Prefix network paths to help resolve paths: https://github.com/codecov/support/issues/472")