Skip to content

Commit dbace6e

Browse files
committed
move verbosity to add_xdifile
1 parent 1fbf406 commit dbace6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

init_db.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@
2727

2828
datadir = 'data'
2929
subdirs = sorted(os.listdir(datadir))
30+
# subdirs = ('Pb', 'Sr')
3031

3132
n = 0
3233
for sdir in subdirs:
3334
sdirname = os.path.join(datadir, sdir)
3435
for f in sorted(glob.glob("%s/*.xdi" % sdirname)):
3536
if 'nonxafs' in f or 'upload' in f:
3637
continue
37-
db.add_xdifile(f, person=email)
38-
print("added ", f)
38+
db.add_xdifile(f, person=email, verbose=True)
3939
n += 1
4040
print("'%s' has %d spectra" % (dbname, n))

0 commit comments

Comments
 (0)