Skip to content

Commit

Permalink
Changed available number of processes to available number of processors.
Browse files Browse the repository at this point in the history
  • Loading branch information
ajocher committed May 30, 2019
1 parent ac77bae commit e69745b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rmgpy/rmg/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,7 +462,7 @@ def initialize(self, **kwargs):
if maxproc > psutil.cpu_count():
raise ValueError("""Invalid input for user defined maximum number of processes {0};
should be an integer and smaller or equal to your available number of
processes {1}""".format(maxproc, psutil.cpu_count()))
processors {1}""".format(maxproc, psutil.cpu_count()))

# Load databases
self.loadDatabase()
Expand Down

0 comments on commit e69745b

Please sign in to comment.