Skip to content

Commit

Permalink
runtime fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellivingston committed Apr 3, 2018
1 parent a783239 commit c36a575
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion pydfnworks/bin/fix_paths.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ def replace(old, new):
subprocess.call("find ../../tests -type f -print0 | xargs -0 sed -i -e 's@" + old + "@" + new + "@g'", shell=True)

old = 'DUMMY'
new = os.getcwd().split('/dfnworks')[0]
new = os.getcwd().split('/dfnWorks')[0]
print 'replacing ', old, ' with ', new
replace(old, new)
4 changes: 1 addition & 3 deletions pydfnworks/pydfnworks/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
from dfnworks import *
from helper import *
from paths import *
import integrated
import create_run_scripts
from paths import *

0 comments on commit c36a575

Please sign in to comment.