Thought all of the following was handled and not:
1) python runs script which opens file and prints to screen OK
2) when cx_freeze distilled script is run it reports file to open is not there, when it is
3) the distilled script can be run from a term with ./ and it finds and opens file
4) any distilled script that doesn't have to open a file, read, print to screen works fine with click open
Anybody run into this and have a correction?
Even a simple script like the following, the problem exists
f = open("some.txt", "r")
list = f.read()
print list
Thanks for any insights,
jkrueger