Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLastProject committed Dec 26, 2017
1 parent 4fbd2ca commit 35596b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pext/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2761,7 +2761,7 @@ def _load_settings(argv: List[str], config_retriever: ConfigRetriever) -> None:
parser.add_argument('--rename-profile', nargs=2, action='append', help='rename the chosen profile.')
parser.add_argument('--list-profiles', action='store_true', help='list all profiles.')
parser.add_argument('--tray', action='store_true', dest='tray', help='create a tray icon (this is the default).')
parser.add_argument('--no-tray', action='store_true', dest='tray', help='do not create a tray icon.')
parser.add_argument('--no-tray', action='store_false', dest='tray', help='do not create a tray icon.')

# Ensure module options get parsed
for arg in argv:
Expand Down

0 comments on commit 35596b1

Please sign in to comment.