Skip to content

Commit

Permalink
fix the directory path issue in gulp
Browse files Browse the repository at this point in the history
  • Loading branch information
qzhu2017 committed Aug 22, 2024
1 parent d392738 commit 2e7de3a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyxtal/interface/gulp.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,8 @@ def __init__(
self.folder = path
if not os.path.exists(self.folder):
os.makedirs(self.folder)
self.input = self.folder + "/" + self.label + input
self.output = self.folder + "/" + self.label + output
self.input = self.label + input
self.output = self.label + output
self.dump = dump
self.iter = 0
self.energy = None
Expand Down

0 comments on commit 2e7de3a

Please sign in to comment.