summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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)