diff --git a/src/balloon.py b/src/balloon.py index 03e5975c..dd8528e6 100755 --- a/src/balloon.py +++ b/src/balloon.py @@ -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: diff --git a/src/ponysay.py b/src/ponysay.py index 0b556430..5264b529 100755 --- a/src/ponysay.py +++ b/src/ponysay.py @@ -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)