为什么config在python3.5 / dist-packages / config.py中不起作用

时间:2017-12-29 05:46:46

标签: python

import config as regex

    except Exception as e:
    logging.error('Issue in Calcutaing: '+str(e))
    return None

我想执行此程序,但它会出现以下错误。

    import config as regex
  File "/usr/local/lib/python3.5/dist-packages/config.py", line 733
    except Exception, e:
                ^

1 个答案:

答案 0 :(得分:0)

在Python 3中的行

except Exception, e:

must be written as

except Exception as e:

可能,如果您希望发布模块,还应该为其提供比config更具描述性的名称。