Skip to content

Commit 8c048ac

Browse files
committed
* [fix] change changes_parser name
1 parent 0a74058 commit 8c048ac

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jenkins_cli/cli_arguments.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ def load_parser():
5757
console_parser.add_argument('-i', help='interactive console', default=False, action='store_true')
5858
console_parser.add_argument('-t', '--interval', help='refresh interval in seconds (in case of interactive console -i)', default=3, type=check_nonnegative)
5959

60-
console_parser = subparsers.add_parser('changes', help="Show build's changes")
61-
console_parser.add_argument('job_name', help='Job to show changes for')
62-
console_parser.add_argument('-b', '--build', help='job build number to show changes for (if omitted, last build number is used)', default='')
60+
changes_parser = subparsers.add_parser('changes', help="Show build's changes")
61+
changes_parser.add_argument('job_name', help='Job to show changes for')
62+
changes_parser.add_argument('-b', '--build', help='job build number to show changes for (if omitted, last build number is used)', default='')
6363

6464
return parser
6565

0 commit comments

Comments
 (0)