cleanup: Fix extraneous whitespace throughout.
[misc] / cdb-list
index ee85a14..1a18f32 100755 (executable)
--- a/cdb-list
+++ b/cdb-list
@@ -6,7 +6,7 @@ from sys import argv, stdin, stderr, exit
 
 ego = r_sub(r'^.*[/\\]', '', argv[0])
 def die(msg, prefix = True):
-  if prefix: msg ='%s: %s' % (ego, msg) 
+  if prefix: msg ='%s: %s' % (ego, msg)
   print >>stderr, msg
   exit(1)
 
@@ -16,9 +16,9 @@ def files(args):
   else:
     for a in args:
       if a == '-':
-        yield stdin
+       yield stdin
       else:
-        yield open(a, 'r')
+       yield open(a, 'r')
 
 if len(argv) < 2:
   die('usage: %s CDB [INPUT ...]' % ego, False)