Skip to content

Commit

Permalink
fixed ascii character for python2
Browse files Browse the repository at this point in the history
  • Loading branch information
efrembernuz committed Jan 26, 2021
1 parent 9da8830 commit 00bda38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosymlib/molecule/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def electronic_structure(self):
:rtype: ElectronicStructure
"""
if self._electronic_structure is None:
warn('Warning: Electronic structure auto generated from Extended-Hückel calculation')
warn('Warning: Electronic structure auto generated from Extended-Huckel calculation')
eh = ExtendedHuckel(self.geometry)
self._electronic_structure = ElectronicStructure(basis=eh.get_basis(),
orbital_coefficients=[eh.get_mo_coefficients(), []],
Expand Down

0 comments on commit 00bda38

Please sign in to comment.