Whitespace normalization.
diff --git a/Lib/logging/__init__.py b/Lib/logging/__init__.py
index f4c552d..cf4d782 100644
--- a/Lib/logging/__init__.py
+++ b/Lib/logging/__init__.py
@@ -1162,7 +1162,7 @@
         root.addHandler(hdlr)
         level = kwargs.get("level")
         if level:
-          root.setLevel(level)
+            root.setLevel(level)
 
 #---------------------------------------------------------------------------
 # Utility functions at module level.
diff --git a/Lib/logging/handlers.py b/Lib/logging/handlers.py
index 97632ea..d1e0a91 100644
--- a/Lib/logging/handlers.py
+++ b/Lib/logging/handlers.py
@@ -315,9 +315,9 @@
         # is the first time back after a disconnect, or
         # we've waited long enough.
         if self.retryTime is None:
-          attempt = 1
+            attempt = 1
         else:
-          attempt = (now >= self.retryTime)
+            attempt = (now >= self.retryTime)
         if attempt:
             try:
                 self.sock = self.makeSocket()
@@ -366,11 +366,11 @@
         """
         ei = record.exc_info
         if ei:
-          dummy = self.format(record) # just to get traceback text into record.exc_text
-          record.exc_info = None  # to avoid Unpickleable error
+            dummy = self.format(record) # just to get traceback text into record.exc_text
+            record.exc_info = None  # to avoid Unpickleable error
         s = cPickle.dumps(record.__dict__, 1)
         if ei:
-          record.exc_info = ei  # for next handler
+            record.exc_info = ei  # for next handler
         slen = struct.pack(">L", len(s))
         return slen + s