我正在为返回提交者列表的 Python 脚本编写测试。
以下:
new_user = self.p4.fetch_user('existing-user')
new_user['User'] = 'new-user'
self.p4.save_user(new_user)
发出:
P4Exception: [P4#run] Errors during command execution( "p4 user -i" )
[Error]: "Error in user specification.\nUser name can't be changed from 'existing-user'."
创建新用户的 Python API 调用是什么?