From cf122c4a8c72e16ac6f60ad3bc76d22460d26b1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mattias=20Andr=C3=A9e?= Date: Tue, 23 Apr 2013 08:45:23 +0200 Subject: [PATCH] fix two todos that was not marked as todos MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/ponysay.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ponysay.py b/src/ponysay.py index c1217928..9abb81e2 100755 --- a/src/ponysay.py +++ b/src/ponysay.py @@ -285,8 +285,8 @@ class Ponysay(): else: args.opts[sl] = args.opts[ssl] ## Save whether standard or extra ponies are used - self.usingstandard = test('-f', '-F', '-q') # -Q - self.usingextra = test('+f', '-F') # +q -Q + self.usingstandard = test('-f', '-F', '-q', '-Q') + self.usingextra = test('+f', '-F', '+q', '-Q') ## Run modes if test('-h'): args.help()