We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cfdm.write
At cfdm 1.8.9.0, tilde and environment variable file name expansions no longer work in cfdm.write:
>>> import cfdm >>> f = cfdm.example_field(0) >>> cfdm.write(f, 'test_file.nc') # OK >>> cfdm.write(f, '~/test_file.nc') # Not OK ... PermissionError: [Errno 13] Permission denied: b'/home/david/~/test_file.nc' >>> cfdm.write(f, ''$HOME/test_file.nc') # Not OK ... PermissionError: [Errno 13] Permission denied: b'/home/david/$HOME/test_file.nc'
PR fix to follow.
The text was updated successfully, but these errors were encountered:
davidhassell
Successfully merging a pull request may close this issue.
At cfdm 1.8.9.0, tilde and environment variable file name expansions no longer work in
cfdm.write
:PR fix to follow.
The text was updated successfully, but these errors were encountered: