Open jasonbillebault opened 5 years ago
Hello,
I tried to compile the BioradWriter.py because I can see that this file isn't generated in pycache folder,
Unfortunately, i have an error when trying to compile it
File "D:\Python\Lib\site-packages\pyforms_gui\utils\BioradWriter.py", line 37
except (IOError) as e:
^
TabError: inconsistent use of tabs and spaces in indentation
[Finished in 0.1s with exit code 1]
Please could you do something about it?
In fact, it was easy. You have an identation issue with the try and the except commands.
try:
with open(BioradWriter.imageJDir + BioradWriter.bioradWriterConfigFile, 'w') as f:
f.write(os.getcwd() + "/output/\n");
f.write(outputFileName);
except (IOError) as e:
raise e
Hello,
I'm trying to create an executable with CX_Freeze.
When I declare packages with pyforms_gui I've got an error.
packages = ["idna","pyforms","pyforms_gui"]
What is utils.BioradWriter? How could I import it?
Regards, Jason.