Skip to content

Commit 8e6195f

Browse files
committed
Fix capitalization in banner text.
1 parent cf86292 commit 8e6195f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bpdb/debugger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def __init__(self):
3131
pdb.Pdb.__init__(self)
3232
self.rcLines = []
3333
self.prompt = '(BPdb) '
34-
self.intro = 'Use "B" to enter BPython, Ctrl-d to exit it.'
34+
self.intro = 'Use "B" to enter bpython, Ctrl-d to exit it.'
3535

3636
def postloop(self):
3737
# We only want to show the intro message once.

0 commit comments

Comments
 (0)