Skip to content

Commit

Permalink
BUGFIX: changed character in QE output for reading occupations with
Browse files Browse the repository at this point in the history
negative k vector
  • Loading branch information
alberto-carta committed Mar 1, 2022
1 parent b12eebd commit f30d14f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/triqs_dft_tools/converters/wannier90.py
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,7 @@ def convert_misc_input(self, out_filename, nnkp_filename, n_spin_blocs):
if line.strip() == 'End of band structure calculation':
break

assert 'k = ' in out_data[ct + 2], 'Cannot read occupations. Set verbosity = "high" in {}'.format(out_filename)
assert 'k =' in out_data[ct + 2], 'Cannot read occupations. Set verbosity = "high" in {}'.format(out_filename)
out_data = out_data[ct+2:]

# block size of eigenvalues + occupations per k-point
Expand Down

0 comments on commit f30d14f

Please sign in to comment.