Skip to content

Commit

Permalink
Debug if something goes wrong when by resolving final_output first
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinkle committed Aug 20, 2019
1 parent d9309b6 commit fce6cde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prairiedog/dgraph_bundled_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def __init__(self, out_dir: str = None):
if out_dir is not None:
self.final_output = pathlib.Path(out_dir).resolve()
else:
self.final_output = pathlib.Path(tempfile.mkdtemp()).resolve()
self.final_output = tempfile.mkdtemp()
self._g = None

def load(self, rdf_dir: str, delete_after: bool = True) -> pathlib.Path:
Expand Down

0 comments on commit fce6cde

Please sign in to comment.