[vlc-commits] commit: fix for missing % (Jean Brouwers )
git at videolan.org
git at videolan.org
Fri Dec 10 14:39:17 CET 2010
vlc/python | branch: master | Jean Brouwers <MrJean1 at Gmail.com> | Thu Dec 9 20:42:36 2010 -0800| [a345ec2f69e351110eba4931366ea65ee6582e60] | committer: Olivier Aubert
fix for missing %
> http://git.videolan.org/gitweb.cgi/vlc/python.git/?a=commit;h=a345ec2f69e351110eba4931366ea65ee6582e60
---
generate.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/generate.py b/generate.py
index 9f3f2e0..b7001f8 100755
--- a/generate.py
+++ b/generate.py
@@ -371,7 +371,7 @@ class Parser(object):
f.check()
def __dump(self, attr):
- print('%s==== %s ==== %s' (_NL_, attr, self.version))
+ print('%s==== %s ==== %s' % (_NL_, attr, self.version))
for a in getattr(self, attr, ()):
a.dump()
More information about the vlc-commits
mailing list