Skip to content

Commit bd04bf2

Browse files
committed
Changed initial value to a boolean.
1 parent 25d52d7 commit bd04bf2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd2/cmd2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2070,7 +2070,7 @@ def onecmd_plus_hooks(self, line):
20702070
:param line: str - line of text read from input
20712071
:return: bool - True if cmdloop() should exit, False otherwise
20722072
"""
2073-
stop = 0
2073+
stop = False
20742074
try:
20752075
statement = self._complete_statement(line)
20762076
(stop, statement) = self.postparsing_precmd(statement)

0 commit comments

Comments
 (0)