summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Pepple <bpepple@fedoraproject.org>2011-12-11 19:24:13 -0500
committerBrian Pepple <bpepple@fedoraproject.org>2011-12-11 19:24:13 -0500
commit68a86ca0b99af9b15ba717c6459c6eefb736a072 (patch)
treece15b4b8b176821deb15c7912a1016af8f0f6c38
parent7e8a131b011ac0ddfea887d19b6a5bd594dbf68b (diff)
downloadscripts-68a86ca0b99af9b15ba717c6459c6eefb736a072.tar.gz
scripts-68a86ca0b99af9b15ba717c6459c6eefb736a072.tar.xz
scripts-68a86ca0b99af9b15ba717c6459c6eefb736a072.zip
Make the output a little more friendly looking
-rwxr-xr-xfind_ogg_errors.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/find_ogg_errors.py b/find_ogg_errors.py
index b0677af..7e5a993 100755
--- a/find_ogg_errors.py
+++ b/find_ogg_errors.py
@@ -35,13 +35,13 @@ def vorbisInfo(currdir, f):
# Walk thru the directory, and pass any vorbis files to be ran with ogginfo.
def findError(currdir):
+ print currdir
for f in os.listdir(currdir):
path = os.path.join(currdir, f)
if not os.path.isdir(path):
if f.endswith('.ogg') or f.endswith('.oga'):
msg = vorbisInfo(currdir, f)
if msg:
- print currdir
print f + ":" + msg
else:
findError(path)