fix typo
This commit is contained in:
parent
e9242c64a4
commit
31ba8d2ee0
1 changed files with 2 additions and 2 deletions
|
|
@ -79,7 +79,7 @@ class CmdMore(Command):
|
||||||
Implement the command
|
Implement the command
|
||||||
"""
|
"""
|
||||||
more = self.caller.ndb._more
|
more = self.caller.ndb._more
|
||||||
if not more and hasattr(self.caller, 'account') and self.caller.has_account:
|
if not more and hasattr(self.caller, 'account') and self.caller.account:
|
||||||
more = self.caller.account.ndb._more
|
more = self.caller.account.ndb._more
|
||||||
if not more:
|
if not more:
|
||||||
self.caller.msg("Error in loading the pager. Contact an admin.")
|
self.caller.msg("Error in loading the pager. Contact an admin.")
|
||||||
|
|
@ -113,7 +113,7 @@ class CmdMoreExit(Command):
|
||||||
Exit pager and re-fire the failed command.
|
Exit pager and re-fire the failed command.
|
||||||
"""
|
"""
|
||||||
more = self.caller.ndb._more
|
more = self.caller.ndb._more
|
||||||
if not more and hasattr(self.caller, 'account') and self.caller.has_account:
|
if not more and hasattr(self.caller, 'account') and self.caller.account:
|
||||||
more = self.caller.account.ndb._more
|
more = self.caller.account.ndb._more
|
||||||
if not more:
|
if not more:
|
||||||
self.caller.msg("Error in exiting the pager. Contact an admin.")
|
self.caller.msg("Error in exiting the pager. Contact an admin.")
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue