From 848ab2b89fd7b9550b0373ed859925bd6f112c1e Mon Sep 17 00:00:00 2001 From: mjames-upc Date: Fri, 20 May 2016 11:00:29 -0600 Subject: [PATCH] fix for pypies incorrectly reporting error upon finding config file --- .../pypies/pypies/config/pypiesConfigurationManager.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonPackages/pypies/pypies/config/pypiesConfigurationManager.py b/pythonPackages/pypies/pypies/config/pypiesConfigurationManager.py index af3dd14c9e..5d6569e074 100644 --- a/pythonPackages/pypies/pypies/config/pypiesConfigurationManager.py +++ b/pythonPackages/pypies/pypies/config/pypiesConfigurationManager.py @@ -30,6 +30,8 @@ # 01/10/13 bkowal Initial Creation. # 01/17/13 #1490 bkowal The location of pypies.cfg is # now retrieved from the environment. +# 05/20/16 mjames Remove print on finding pypies.cfg +# which was incorrectly logged as an error. # import os, ConfigParser @@ -50,8 +52,6 @@ class PypiesConfigurationManager: if not os.path.exists(self.__configLoc): print "Unable to find pypies.cfg at ", self.__configLoc self.__configLoc = None - else: - print "Found pypies.cfg at ", self.__configLoc def __loadConfig(self): self.__scp = ConfigParser.SafeConfigParser()