Skip to content

Commit

Permalink
Minor: report possible rotors found
Browse files Browse the repository at this point in the history
  • Loading branch information
alongd committed Mar 13, 2019
1 parent f7924e4 commit 2f9ac8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arc/species/species.py
Original file line number Diff line number Diff line change
Expand Up @@ -546,9 +546,9 @@ def determine_rotors(self):
self.rotors_dict[self.number_of_rotors] = new_rotor
self.number_of_rotors += 1
if self.number_of_rotors == 1:
logging.info('\nFound 1 rotor for {0}'.format(self.label))
logging.info('\nFound one possible rotor for {0}'.format(self.label))
elif self.number_of_rotors > 1:
logging.info('\nFound {0} rotors for {1}'.format(self.number_of_rotors, self.label))
logging.info('\nFound {0} possible rotors for {1}'.format(self.number_of_rotors, self.label))
if self.number_of_rotors > 0:
logging.info('Pivot list(s) for {0}: {1}\n'.format(self.label,
[self.rotors_dict[i]['pivots'] for i in range(self.number_of_rotors)]))
Expand Down

0 comments on commit 2f9ac8e

Please sign in to comment.