summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Pepple <bpepple@fedoraproject.org>2011-12-07 18:41:03 -0500
committerBrian Pepple <bpepple@fedoraproject.org>2011-12-07 18:41:03 -0500
commit0778c4344e029c0eac7da49611ea788ba613ac6b (patch)
treee6a13a3c0144a46892e1f617891b75b773c9d34c
parent9fc5e4234991bf48dc622140fc605d2d24c30006 (diff)
downloadscripts-0778c4344e029c0eac7da49611ea788ba613ac6b.tar.gz
scripts-0778c4344e029c0eac7da49611ea788ba613ac6b.tar.xz
scripts-0778c4344e029c0eac7da49611ea788ba613ac6b.zip
Use tabs
-rwxr-xr-xfind_ogg_errors.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/find_ogg_errors.py b/find_ogg_errors.py
index bcac430..b0677af 100755
--- a/find_ogg_errors.py
+++ b/find_ogg_errors.py
@@ -26,9 +26,9 @@ import subprocess
# Run ogginfo on the file and return warning msg.
def vorbisInfo(currdir, f):
- myprocess = subprocess.Popen(['ogginfo',currdir + '/' + f],stdout=subprocess.PIPE)
- (sout,serr) = myprocess.communicate()
- for line in sout.split('\n'):
+ myprocess = subprocess.Popen(['ogginfo',currdir + '/' + f],stdout=subprocess.PIPE)
+ (sout,serr) = myprocess.communicate()
+ for line in sout.split('\n'):
if line.strip().startswith('WARNING:'):
m = line.strip()[len("WARNING:"):].replace("WARNING:"," ")
return m