eric6/DebugClients/Python/DebugUtilities.py

changeset 8217
385f60c94548
parent 8205
4a0f1f896341
child 8221
0572a215bd2f
--- a/eric6/DebugClients/Python/DebugUtilities.py	Sat Apr 10 17:54:58 2021 +0200
+++ b/eric6/DebugClients/Python/DebugUtilities.py	Sat Apr 10 18:31:17 2021 +0200
@@ -80,7 +80,7 @@
     varargs = None
     if co.co_flags & CO_VARARGS:
         varargs = co.co_varnames[nargs]
-        nargs = nargs + 1
+        nargs += 1
     varkw = None
     if co.co_flags & CO_VARKEYWORDS:
         varkw = co.co_varnames[nargs]

eric ide

mercurial