# HG changeset patch # User Goffi # Date 1499424328 -7200 # Node ID eaff25529c530858ed3701ab4d8ae672311aaab6 # Parent a42a2478abd25a222113c164ce1174c66e5ad394 jp (base): typo diff -r a42a2478abd2 -r eaff25529c53 frontends/src/jp/base.py --- a/frontends/src/jp/base.py Thu Jul 06 20:35:21 2017 +0200 +++ b/frontends/src/jp/base.py Fri Jul 07 12:45:28 2017 +0200 @@ -166,7 +166,7 @@ self.bridge = bridge_module.Bridge() self.bridge.bridgeConnect(callback=self._bridgeCb, errback=self._bridgeEb) # _no_exit is used in shell mode because SystemExit can't - # catched when loop is in use + # catched in some cases self._no_exit = False def _bridgeCb(self): @@ -174,7 +174,7 @@ description=DESCRIPTION) self._make_parents() self.add_parser_options() - self.subparsers = self.parser.add_subparsers(title=_('Available commands'), dest='subparser_name') + self.subparsers = self.parser.add_subparsers(title=_(u'Available commands'), dest='subparser_name') self._auto_loop = False # when loop is used for internal reasons self._need_loop = False