Skip to content

Commit

Permalink
fix path join
Browse files Browse the repository at this point in the history
  • Loading branch information
brifordwylie committed Dec 3, 2024
1 parent 97263f1 commit 3683294
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sageworks/utils/plugin_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def load_plugins(self):
atexit.register(self._cleanup_temp_dir)

# Add the loading directory to the PYTHONPATH for custom packages
sys.path.append(self.loading_dir + "/packages")
sys.path.append(os.path.join(self.loading_dir, "packages"))

self.log.important(f"Loading plugins from {self.loading_dir}...")
for plugin_type in self.plugins.keys():
Expand Down

0 comments on commit 3683294

Please sign in to comment.