Skip to content

Commit

Permalink
Merge pull request #73 from Surasia/patch-1
Browse files Browse the repository at this point in the history
Fix incorrect import
  • Loading branch information
DoctorPresto authored Nov 19, 2023
2 parents b04c328 + a501202 commit 7842102
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions i_scene_cp77_gltf/main/script_manager.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import bpy
import os
from .common import get_script_dir()
from .common import get_script_dir

script_dir = get_script_dir()

Expand Down Expand Up @@ -58,4 +58,4 @@ def saveScript(self, context):
if script_text:
script_path = os.path.join(script_dir, self.script_file)
with open(script_path, 'w') as f:
f.write(script_text.as_string())
f.write(script_text.as_string())

0 comments on commit 7842102

Please sign in to comment.