Fix a bug introduced in my previous checkin, where the state was not properly
restored after parsing "SBTarget".  Indentation matters in Python. :-)


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@130532 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/scripts/Python/modify-python-lldb.py b/scripts/Python/modify-python-lldb.py
index afa5494..0b33e69 100644
--- a/scripts/Python/modify-python-lldb.py
+++ b/scripts/Python/modify-python-lldb.py
@@ -124,8 +124,9 @@
                 if (state & DEFINING_EQUALITY):
                     print >> new_content, eq_def % (cls, e[cls], e[cls])
                     print >> new_content, ne_def
-                # Next state will be NORMAL.
-                state = NORMAL
+
+            # Next state will be NORMAL.
+            state = NORMAL
 
     # Pass the original line of content to the ew_content.
     print >> new_content, line