tracemalloc.py: fix indentation
diff --git a/Lib/tracemalloc.py b/Lib/tracemalloc.py
index 6f0a234..dd73d05 100644
--- a/Lib/tracemalloc.py
+++ b/Lib/tracemalloc.py
@@ -119,12 +119,12 @@
         previous = old_group.pop(traceback, None)
         if previous is not None:
             stat = StatisticDiff(traceback,
-                                  stat.size, stat.size - previous.size,
-                                  stat.count, stat.count - previous.count)
+                                 stat.size, stat.size - previous.size,
+                                 stat.count, stat.count - previous.count)
         else:
             stat = StatisticDiff(traceback,
-                                  stat.size, stat.size,
-                                  stat.count, stat.count)
+                                 stat.size, stat.size,
+                                 stat.count, stat.count)
         statistics.append(stat)
 
     for traceback, stat in old_group.items():