Skip to content

Commit d08a3d0

Browse files
committed
fix misspelling. IPython <-> BPython
--no-ipython's help: BPython -> IPython --no-bpython's help: IPython -> BPython
1 parent a497aec commit d08a3d0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

flask_script/commands.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,12 +260,12 @@ def get_options(self):
260260
action="store_true",
261261
dest='no_ipython',
262262
default=not(self.use_ipython),
263-
help="Do not use the BPython shell"),
263+
help="Do not use the IPython shell"),
264264
Option('--no-bpython',
265265
action="store_true",
266266
dest='no_bpython',
267267
default=not(self.use_bpython),
268-
help="Do not use the IPython shell"),
268+
help="Do not use the BPython shell"),
269269
)
270270

271271
def get_context(self):

0 commit comments

Comments
 (0)