Whitespace normalization.
diff --git a/Lib/test/test_shutil.py b/Lib/test/test_shutil.py
index 79da538..df35abf 100644
--- a/Lib/test/test_shutil.py
+++ b/Lib/test/test_shutil.py
@@ -74,7 +74,7 @@
             except:
                 pass
 
-                
+
     def test_copytree_simple(self):
         src_dir = tempfile.mkdtemp()
         dst_dir = os.path.join(tempfile.mkdtemp(), 'destination')
@@ -99,8 +99,8 @@
                 os.removedirs(dst_dir)
             except:
                 pass
-            
-            
+
+
     if hasattr(os, "symlink"):
         def test_dont_copy_file_onto_link_to_itself(self):
             # bug 851123.