# | Line 976 | Line 976 | def configureNet(cfgfile, cfile, mfile, | |
---|---|---|
976 | print(exc.strerror, file=sys.stderr) | |
977 | print('Unable to read configuration file ' + cfgfile + '.', file=sys.stderr) | |
978 | except Exception as exc: | |
979 | < | if len(exc.args >= 2): |
979 | > | if len(exc.args) >= 2: |
980 | type, msg = exc.args | |
981 | else: | |
982 | # re-raise the exception |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |