Balloon.{fromfile ==> fromFile}

Signed-off-by: Mattias Andrée <maandree@operamail.com>
This commit is contained in:
Mattias Andrée 2013-08-12 07:21:44 +02:00
parent 011c31dd93
commit 696884ced4
2 changed files with 2 additions and 2 deletions

View file

@ -141,7 +141,7 @@ class Balloon():
@return :Balloon Instance describing the balloon's style @return :Balloon Instance describing the balloon's style
''' '''
@staticmethod @staticmethod
def fromfile(balloonfile, isthink): def fromFile(balloonfile, isthink):
## Use default balloon if none is specified ## Use default balloon if none is specified
if balloonfile is None: if balloonfile is None:
if isthink: if isthink:

View file

@ -806,7 +806,7 @@ class Ponysay():
@return :Balloon Instance describing the balloon's style @return :Balloon Instance describing the balloon's style
''' '''
def __getballoon(self, balloonfile): def __getballoon(self, balloonfile):
return Balloon.fromfile(balloonfile, self.isthink) return Balloon.fromFile(balloonfile, self.isthink)