Skip to content

Commit

Permalink
The default base_dir is the working directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
FredLoney committed Jun 14, 2017
1 parent 9d2424f commit 9a6c90d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions qipipe/pipeline/workflow_base.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import os
import re
import tempfile
import pprint
import networkx as nx
import qixnat
Expand Down Expand Up @@ -108,7 +107,7 @@ def __init__(self, name, **opts):
elif parent:
base_dir = parent.base_dir
else:
base_dir = tempfile.mkdtemp(prefix='qipipe_')
base_dir = os.getcwd()
self.base_dir = base_dir
"The workflow execution directory (default a new temp directory)."

Expand Down

0 comments on commit 9a6c90d

Please sign in to comment.