Skip to content

Commit 80c71d0

Browse files
committed
Seperate I mean separate I mean seperate.... etc.
1 parent a1032df commit 80c71d0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

manager_tools.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -68,9 +68,9 @@ def update_attributes(copyto,copyfrom,skip_keys=[],take_keys=[]):
6868
pass
6969
return updated
7070

71-
def seperate_jastrow(wffile,optimizebasis=False):
71+
def separate_jastrow(wffile,optimizebasis=False):
7272
''' Seperate the jastrow section of a QWalk wave function file.'''
73-
# Copied from utils/seperate_jastrow TODO: no copy, bad
73+
# Copied from utils/separate_jastrow TODO: no copy, bad
7474
wff=open(wffile,'r')
7575
tokens=wff.read().split('\n')
7676
in_jastrow=False

qwalkmanager.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from manager_tools import resolve_status, update_attributes, seperate_jastrow
1+
from manager_tools import resolve_status, update_attributes, separate_jastrow
22
from autorunner import RunnerPBS
33
import os
44
import pickle as pkl
@@ -195,7 +195,7 @@ def export_qwalk(self):
195195
cwd=os.getcwd()
196196
os.chdir(self.path)
197197
self.qwfiles['wfout']="%s.wfout"%self.infile
198-
newjast=seperate_jastrow(self.qwfiles['wfout'])
198+
newjast=separate_jastrow(self.qwfiles['wfout'])
199199
self.qwfiles['jastrow2']="%s.jast"%self.infile
200200
with open(self.qwfiles['jastrow2'],'w') as outf:
201201
outf.write(newjast)

0 commit comments

Comments
 (0)