Skip to content

Commit

Permalink
Merge pull request #9 from rotemreiss/bug-fix-sfn-arg
Browse files Browse the repository at this point in the history
Fix missing dash in the sfn argument
  • Loading branch information
rotemreiss authored Sep 11, 2024
2 parents b2723cd + 208fb2b commit f9cc2b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="jtrack",
version="1.2.2",
version="1.2.3",
author="Rotem Reiss",
author_email="[email protected]",
description="Fast and effective integration to Jira.",
Expand Down

0 comments on commit f9cc2b4

Please sign in to comment.