Skip to content

Commit

Permalink
Fix missing dash in the sfn argument
Browse files Browse the repository at this point in the history
  • Loading branch information
rotemreiss authored Sep 11, 2024
1 parent b2723cd commit 26c3401
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jtrack/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def interactive():
parser.add_argument('-se', '--skip-existing', help='Do nothing if Jira already exists and open.',
action='store_true',
dest='skip_existing')
parser.add_argument('sfn', '--stateless-field-name', help='Name of the Jira custom field for holding the local identifier.', dest='stateless_field_name')
parser.add_argument('-sfn', '--stateless-field-name', help='Name of the Jira custom field for holding the local identifier.', dest='stateless_field_name')
parser.add_argument('-q', '--quiet', help='Do not print the banner.', action='store_true', dest='quiet')
args = parser.parse_args()

Expand Down

0 comments on commit 26c3401

Please sign in to comment.