From e69745b6fea79b57cbe56a3d38ae0c59165c26d2 Mon Sep 17 00:00:00 2001 From: Agnes Date: Mon, 20 May 2019 15:51:05 -0400 Subject: [PATCH] Changed available number of processes to available number of processors. --- rmgpy/rmg/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rmgpy/rmg/main.py b/rmgpy/rmg/main.py index 91eba282d24..430b37e9cd1 100644 --- a/rmgpy/rmg/main.py +++ b/rmgpy/rmg/main.py @@ -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()