From 374d5b17b862916067fae0ec73a7e6de48060be2 Mon Sep 17 00:00:00 2001 From: Andoni Morales Alastruey Date: Fri, 23 Aug 2013 00:35:45 +0200 Subject: strip: fix typo --- cerbero/tools/strip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cerbero/tools/strip.py b/cerbero/tools/strip.py index f37fcfb..46e3885 100644 --- a/cerbero/tools/strip.py +++ b/cerbero/tools/strip.py @@ -36,7 +36,7 @@ class Strip(object): if f in path: return try: - shell.call("%s %s". self._strip_cmd(), path) + shell.call("%s %s" % (self._strip_cmd(), path)) except: pass -- cgit v1.2.3