From 11c83c569c58e374e14cf975ae1c2e92f71634dc Mon Sep 17 00:00:00 2001 From: vsr Date: Wed, 5 Jul 2006 07:26:13 +0000 Subject: [PATCH] Print "Warning! File not found!" message rather then "Error!" if the user configuration file can not be found. --- bin/launchConfigureParser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/launchConfigureParser.py b/bin/launchConfigureParser.py index c3f8222c3..4a568215c 100755 --- a/bin/launchConfigureParser.py +++ b/bin/launchConfigureParser.py @@ -253,7 +253,7 @@ for dir in dirs: # SalomeApprc file in user's catalogue filename = userFile() -if filename and not os.path.exists(filename): +if not filename or not os.path.exists(filename): print "Configure parser: Warning : could not find user configuration file" else: try: -- 2.39.2