我正在尝试向主管添加一个事件管理器,但是我收到了这样的错误:
AttributeError: 'NoneType' object has no attribute '__name__'
Launching unittests with arguments python -m unittest test.DummyTest.test_double_of_X_is_Y in D:\rené\PycharmProjects\params
主管模块是test_event_call.erl:
Windws 10 Home 64-bit
PyCharm Community Edition 2017.1.1
Python 3.6.1
孩子是test_event.erl:
1> test_event_call:start_link().
{ok,<0.85.0>}
2> test_event_call:start_event().
{error,{ok,{child,undefined,test_event_proc,
{test_event,start,[]},
transient,200000,worker,
[test_event]}}}
任何人都可以帮我解决这个错误吗?
答案 0 :(得分:1)
返回{ok,Pid}解决了我的问题。