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
There will likely be usecases where one user wants to share a database with another user without letting that other user delete/edit the database. It is not uncommon to open up files with read only permissions. Currently, pycinema doesn't support this do to the use of r+ in the various reader filters which causes a permission error for read only files. Can the r+ in all reader filters be changed to a r?
Thanks
The text was updated successfully, but these errors were encountered:
This makes sense to me, especially with the segmentation of operations into filters. I'll do a pass through the code and see if there are any issues with this.
There will likely be usecases where one user wants to share a database with another user without letting that other user delete/edit the database. It is not uncommon to open up files with read only permissions. Currently, pycinema doesn't support this do to the use of
r+
in the various reader filters which causes a permission error for read only files. Can ther+
in all reader filters be changed to ar
?Thanks
The text was updated successfully, but these errors were encountered: