diff options
Diffstat (limited to 'slave/autotua/config.py')
-rw-r--r-- | slave/autotua/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slave/autotua/config.py b/slave/autotua/config.py index 704a310..a168e52 100644 --- a/slave/autotua/config.py +++ b/slave/autotua/config.py @@ -47,7 +47,7 @@ try: exec('%s = %s' % (option, cfg.getboolean('global', option.lower()))) elif isinstance(value, int): exec('%s = %s' % (option, cfg.getint('global', option.lower()))) -except IOError, OSError: +except (IOError, OSError): print "!!! Unable to read %s/slave.cfg, ignoring..." % const.CONFIG_PATH if not AUTOTUA_MASTER: |