Skip to content

Commit

Permalink
Merge pull request TRIQS#206 from Lidra1/unstable
Browse files Browse the repository at this point in the history
BUGFIX: negative k vectors in QE nscf.out
  • Loading branch information
the-hampel authored Mar 1, 2022
2 parents 94630a4 + f30d14f commit 7d93442
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 7d93442

Please sign in to comment.