mirror of
https://github.com/erkin/ponysay
synced 2024-11-23 11:53:14 +00:00
Balloon.{fromfile ==> fromFile}
Signed-off-by: Mattias Andrée <maandree@operamail.com>
This commit is contained in:
parent
011c31dd93
commit
696884ced4
2 changed files with 2 additions and 2 deletions
|
@ -141,7 +141,7 @@ class Balloon():
|
|||
@return :Balloon Instance describing the balloon's style
|
||||
'''
|
||||
@staticmethod
|
||||
def fromfile(balloonfile, isthink):
|
||||
def fromFile(balloonfile, isthink):
|
||||
## Use default balloon if none is specified
|
||||
if balloonfile is None:
|
||||
if isthink:
|
||||
|
|
|
@ -806,7 +806,7 @@ class Ponysay():
|
|||
@return :Balloon Instance describing the balloon's style
|
||||
'''
|
||||
def __getballoon(self, balloonfile):
|
||||
return Balloon.fromfile(balloonfile, self.isthink)
|
||||
return Balloon.fromFile(balloonfile, self.isthink)
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue