DebugClients/Python/DebugClientBase.py

changeset 6735
31e263d49c04
parent 6645
ad476851d7e0
child 6847
5150e076014b
diff -r 1eaf6955acf5 -r 31e263d49c04 DebugClients/Python/DebugClientBase.py
--- a/DebugClients/Python/DebugClientBase.py	Wed Feb 13 18:51:15 2019 +0100
+++ b/DebugClients/Python/DebugClientBase.py	Wed Feb 13 18:59:31 2019 +0100
@@ -581,7 +581,7 @@
                 with codecs.open(sys.argv[0], encoding=self.__coding) as fp:
                     script = fp.read()
                 if script and not script.endswith('\n'):
-                        script += '\n'
+                    script += '\n'
             
             if script:
                 self.running = sys.argv[0]
@@ -1355,7 +1355,7 @@
         elif scope:
             varDict = f.f_globals
         elif f.f_globals is f.f_locals:
-                scope = -1
+            scope = -1
         else:
             varDict = f.f_locals
             
@@ -1407,7 +1407,7 @@
         elif scope:
             varDict = f.f_globals
         elif f.f_globals is f.f_locals:
-                scope = -1
+            scope = -1
         else:
             varDict = f.f_locals
         

eric ide

mercurial