Skip to content

Commit 62e7341

Browse files
committed
Improve command line help for Windows parent console
This makes it more clear that it is not some Spyder's console, but standard windows console window.
1 parent f7da540 commit 62e7341

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bootstrap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
parser.add_option('--gui', default=None,
3131
help="GUI toolkit: pyqt (for PyQt4) or pyside (for PySide)")
3232
parser.add_option('--hide-console', action='store_true',
33-
default=False, help="Hide parent console (Windows only)")
33+
default=False, help="Hide parent console window (Windows only)")
3434
parser.add_option('--debug', action='store_true',
3535
default=False, help="Run Spyder in debug mode")
3636
options, args = parser.parse_args()

spyderlib/cli_options.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def get_options():
3131
parser.add_option('-w', '--workdir', dest="working_directory", default=None,
3232
help="Default working directory")
3333
parser.add_option('--show-console', action='store_true', default=False,
34-
help="Show parent console (Windows only)")
34+
help="Do not hide parent console window (Windows)")
3535
parser.add_option('--multithread', dest="multithreaded",
3636
action='store_true', default=False,
3737
help="Internal console is executed in another thread "

0 commit comments

Comments
 (0)