Skip to content

Commit

Permalink
Fix incorrect path
Browse files Browse the repository at this point in the history
For FileSequence module
  • Loading branch information
n-jay committed Dec 20, 2023
1 parent a1e922d commit 7b0f6df
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cuesubmit/plugins/blender/OpenCue/Setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@

pyoutline_directory = "outline"
opencue_imported_directory = "opencue"
filesequence_directory = "FileSequence"
filesequence_imported_directory = "FileSequence"
pyoutline_directory_path = os.path.join(sys.prefix, blender_dependencies_directory, pyoutline_directory)
opencue_directory_path = os.path.join(sys.prefix, blender_dependencies_directory, opencue_imported_directory)
filesequence_directory_path = os.path.join(sys.prefix, blender_dependencies_directory, filesequence_directory)
filesequence_directory_path = os.path.join(sys.prefix, blender_dependencies_directory, filesequence_imported_directory)

def isWindows():
return os.name == 'nt'
Expand Down Expand Up @@ -104,7 +104,7 @@ def installOpencueModules():
print ("----- Installing OpenCue Dependencies -----")
shutil.copytree(pyoutline_path, pyoutline_directory_path)
shutil.copytree(opencue_path, opencue_directory_path)
shutil.copytree(pyoutline_path, filesequence_directory_path)
shutil.copytree(filesequence_path, filesequence_directory_path)
print ("\n----- OpenCue Dependencies Installed Successfully -----")


0 comments on commit 7b0f6df

Please sign in to comment.