Skip to content

Commit

Permalink
Added a deleted import in postqe/api.py
Browse files Browse the repository at this point in the history
  • Loading branch information
brunato committed Aug 31, 2017
1 parent b57f762 commit d7d2e06
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion postqe/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"""
A collection of functions to be part of postqe API and exposed to the user.
"""
import os
from postqe.eos import QEEquationOfState
from ase.dft import DOS

Expand All @@ -24,7 +25,7 @@ def get_label(prefix, outdir=None):
try:
outdir = os.environ['ESPRESSO_TMPDIR']
except KeyError:
outdir = '.' # os.getcwd()??
outdir = os.curdir

label = os.path.join(outdir, prefix)
return label
Expand Down

0 comments on commit d7d2e06

Please sign in to comment.