I'm running Python 2.7.13 via Anaconda on Windows 10, and trying to run the following code
import Tkinter, tkFileDialog
root = Tkinter.Tk()
root.withdraw()
file_path = tkFileDialog.askopenfilename()
(source: https://stackoverflow.com/a/14119223/1850917)
The code itself works fine, but the message Redirecting output to win32trace remote collector
appears when I run the last command, and as it says, all output is redirected, so I am unable to print() etc.
Is there a way to disable this behaviour?