You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Didn't work because FileCommand added the .py suffix, it would be nice to fix that by being able to pass in a value to the FileCommand.__init__() method.
So I switched it to:
s=testdata.Command(path)
But that failed because path didn't have the right permissions, so it might be worth having the files be default 777 or having an easy way to set these permissions, even if it was a create_script() method.
Didn't work because
FileCommand
added the.py
suffix, it would be nice to fix that by being able to pass in a value to theFileCommand.__init__()
method.So I switched it to:
But that failed because path didn't have the right permissions, so it might be worth having the files be default
777
or having an easy way to set these permissions, even if it was acreate_script()
method.What finally worked was:
Which doesn't seem ideal.
The text was updated successfully, but these errors were encountered: