diff -r 583beaf0b4b8 -r 226481ff40d1 DebugClients/Python3/DebugClientBase.py --- a/DebugClients/Python3/DebugClientBase.py Sun Oct 06 19:45:29 2013 +0200 +++ b/DebugClients/Python3/DebugClientBase.py Sun Oct 06 19:52:33 2013 +0200 @@ -1536,7 +1536,8 @@ if len(dict) == 0 and len(udict) > 0: if access: loc = {"udict": udict} - exec('qvar = udict{0!s}'.format(access), globals(), loc) + exec('qvar = udict{0!s}'.format(access), + globals(), loc) qvar = loc["qvar"] # this has to be in line with VariablesViewer.indicators elif rvar and rvar[0][-2:] in ["[]", "()", "{}"]: