Fix minor bug

This commit is contained in:
Atsushi Togo 2014-07-30 16:41:47 +09:00
parent 59c45bf19f
commit 8871054d86
1 changed files with 1 additions and 1 deletions

View File

@ -895,7 +895,7 @@ if log_level:
print "Mesh divisors: [ %d %d %d ]" % tuple(mesh_divs)
if band_indices is not None and not settings.get_is_bterta():
print "Band indices: [",
for bi in (np.array(band_indices) + 1):
for bi in [np.array(bi) + 1 for bi in band_indices]:
print bi,
print "]"
if sigmas: