Make reindent.py happy (convert everything to 4-space indents!).
diff --git a/Lib/test/test_gdbm.py b/Lib/test/test_gdbm.py
index 030218e..900d737 100755
--- a/Lib/test/test_gdbm.py
+++ b/Lib/test/test_gdbm.py
@@ -2,7 +2,7 @@
 """Test script for the gdbm module
    Roger E. Masse
 """
-    
+
 import gdbm
 from gdbm import error
 from test_support import verbose, TestFailed
@@ -15,7 +15,7 @@
 a = g.keys()
 if verbose:
     print 'Test gdbm file keys: ', a
-    
+
 g.has_key('a')
 g.close()
 try: