Skip to content

Commit

Permalink
fix: file "..." is not file sounds silly
Browse files Browse the repository at this point in the history
  • Loading branch information
Picalines committed Jun 29, 2024
1 parent 38ff10c commit 7eecc4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion operators/import_camera_recording.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _import_texture(self, scene: Scene, texture_props: TextureRecordingPropertie

recording_path = texture_props.absolute_recording_path
if not path.isfile(recording_path):
Result.do_error(f'file "{texture_props.recording_path}" is not a file')
Result.do_error(f'"{texture_props.recording_path}" is not a file')

old_movie_clip: MovieClip = texture_props.movie_clip
new_movie_clip = bpy.data.movieclips.load(recording_path)
Expand Down

0 comments on commit 7eecc4a

Please sign in to comment.