--- a/DebugClients/Python3/FlexCompleter.py Sun Oct 06 17:27:53 2013 +0200 +++ b/DebugClients/Python3/FlexCompleter.py Sun Oct 06 18:02:21 2013 +0200 @@ -187,7 +187,8 @@ try: if word[:n] == attr and hasattr(thisobject, word): val = getattr(thisobject, word) - word = self._callable_postfix(val, "{0}.{1}".format(expr, word)) + word = self._callable_postfix( + val, "{0}.{1}".format(expr, word)) matches.append(word) except: # some badly behaved objects pollute dir() with non-strings,