From 696884ced4444882f9af24387e473ebd14b58924 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Andr=C3=A9e?= Date: Mon, 12 Aug 2013 07:21:44 +0200 Subject: [PATCH] Balloon.{fromfile ==> fromFile} MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/balloon.py | 2 +- src/ponysay.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)