Skip to content

Commit

Permalink
Fix for aiidateam#158 (+typo).
Browse files Browse the repository at this point in the history
  • Loading branch information
adegomme committed Mar 16, 2021
1 parent 36d249c commit 7f969c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PEOPLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Reference person for each plugin developement:
* Aliaksandr Yakutovich - aiida_cp2k
* Espen Flage-Larsen - aiida_vasp
* Emanuele Bosoni - aiida_siesta
* Augustine Degomme - aiida_bigdft
* Augustin Degomme - aiida_bigdft
* Conrad Johnston - aiida_nwchem

Reference person from aiida_team:
Expand Down
2 changes: 1 addition & 1 deletion aiida_common_workflows/workflows/relax/bigdft/generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ def get_builder(
if psp:
import os
builder.pseudos = orm.List()
psprel = [os.path.relpath(i) for i in psp]
psprel = [os.path.normpath(os.path.relpath(i)) for i in psp]
builder.pseudos.extend(psprel)
builder.parameters = BigDFTParameters(dict=inputdict)
builder.code = orm.load_code(engines[relaxation_schema]['code'])
Expand Down

0 comments on commit 7f969c8

Please sign in to comment.