Skip to content

Commit

Permalink
double ,, cause compile errors
Browse files Browse the repository at this point in the history
Issue #319
  • Loading branch information
damies13 committed Nov 22, 2024
1 parent 63e0564 commit 79f9619
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rfswarm_manager/rfswarm.py
Original file line number Diff line number Diff line change
Expand Up @@ -2388,7 +2388,7 @@ def __init__(self, master=None):
parser.add_argument('-p', '--port', help='Port number to bind the server to')
parser.add_argument('-c', '--create', help='ICON : Create application icon / shortcut')
# to be deprecated by version 2.1
parser.add_argument('-u', '--ui',, help='[ V1 | V2 ] Specify which version of the GUI you want to use (default: V1)')
parser.add_argument('-u', '--ui', help='[ V1 | V2 ] Specify which version of the GUI you want to use (default: V1)')

base.args = parser.parse_args()

Expand Down
2 changes: 1 addition & 1 deletion rfswarm_reporter/rfswarm_reporter.py
Original file line number Diff line number Diff line change
Expand Up @@ -3501,7 +3501,7 @@ def __init__(self, master=None):
# parser.add_argument('--ods', help='Generate an OpenOffice/LibreOffice Calc report', action='store_true')
parser.add_argument('-c', '--create', help='ICON : Create application icon / shortcut')
# to be deprecated by version 2.1
parser.add_argument('-u', '--ui',, help='[ V1 | V2 ] Specify which version of the GUI you want to use (default: V1)')
parser.add_argument('-u', '--ui', help='[ V1 | V2 ] Specify which version of the GUI you want to use (default: V1)')

base.args = parser.parse_args()

Expand Down

0 comments on commit 79f9619

Please sign in to comment.