Browse Source

wxGUI: fix bad indentation (#784)

introduced in PR #772
nilason 4 years ago
parent
commit
1311ef229d
1 changed files with 4 additions and 4 deletions
  1. 4 4
      gui/wxpython/wxgui.py

+ 4 - 4
gui/wxpython/wxgui.py

@@ -110,10 +110,10 @@ class GMApp(wx.App):
 
 
         return True
         return True
 
 
-        def OnExit(self):
-            """Clean up on exit"""
-            unregisterPid(os.getpid())
-            return super().OnExit()
+    def OnExit(self):
+        """Clean up on exit"""
+        unregisterPid(os.getpid())
+        return super().OnExit()
 
 
 
 
 def printHelp():
 def printHelp():