mirror of
https://github.com/erkin/ponysay.git
synced 2024-11-22 12:27:59 +01:00
m fix
Signed-off-by: Mattias Andrée <maandree@operamail.com>
This commit is contained in:
parent
91e62b4a60
commit
5317fcddac
1 changed files with 2 additions and 2 deletions
|
@ -458,7 +458,7 @@ class Ponysay():
|
||||||
'''
|
'''
|
||||||
## If there is no selected ponies, choose all of them
|
## If there is no selected ponies, choose all of them
|
||||||
if (selection is None) or (len(selection) == 0):
|
if (selection is None) or (len(selection) == 0):
|
||||||
selection = [self.___selectAnypony(args)]
|
selection = [self.__selectAnypony(args)]
|
||||||
|
|
||||||
## Select a random pony of the choosen ones
|
## Select a random pony of the choosen ones
|
||||||
pony = selection[random.randrange(0, len(selection))]
|
pony = selection[random.randrange(0, len(selection))]
|
||||||
|
@ -509,7 +509,7 @@ class Ponysay():
|
||||||
|
|
||||||
## Get all ponies, with quotes
|
## Get all ponies, with quotes
|
||||||
oldponies = {}
|
oldponies = {}
|
||||||
self.__getAllPonies(standard, extra, oldponies, quoters):
|
self.__getAllPonies(standard, extra, oldponies, quoters)
|
||||||
|
|
||||||
## Apply restriction
|
## Apply restriction
|
||||||
ponies = self.__applyRestriction(oldponies, ponydirs)
|
ponies = self.__applyRestriction(oldponies, ponydirs)
|
||||||
|
|
Loading…
Reference in a new issue