##// END OF EJS Templates
still raise IOError on missing config file...
MinRK -
Show More
@@ -369,7 +369,11 b' class Application(SingletonConfigurable):'
369 369 loader = PyFileConfigLoader(filename, path=path)
370 370 try:
371 371 config = loader.load_config()
372 except IOError:
373 # problem with the file (probably doesn't exist), raise
374 raise
372 375 except Exception:
376 # problem while running the file
373 377 self.log.error("Exception while loading config file %s [path=%s]"%
374 378 (filename, path), exc_info=True)
375 379 else:
General Comments 0
You need to be logged in to leave comments. Login now