ENHANCE-PET/FALCON

Using FALCON on a PC with Spanish language

mnamias opened this issue · 2 comments

Hi there!

In order to make FALCON work on my Spanish Windows PC, I had to modify the following line:

falconz_env/lib/site-packages/falconz/file_utilities.py

if system_type == "windows":
    subprocess.check_call(["icacls", file_path, "/grant", "Everyone:(F)"])

Change "Everyone" to "Todos":

if system_type == "windows":
    subprocess.check_call(["icacls", file_path, "/grant", "Todos:(F)"])

Best,
Mauro

Hi Mauro,
Gracias :D! I will keep this open ;)!
cheers,
lalith

I am closing this, because it seems to be a niche and I will add this in faq! Thanks again @mnamias for your patch!