此 p4python 代码片段获取 perforce 描述并删除描述中提到的方括号。我计划在更改提交触发器期间调用此脚本,以在提交更改之前替换 CL 描述。不知道出了什么问题,但是触发器没有接受我的新更改描述。有没有人尝试过使用 p4python 执行此操作?任何提示高度赞赏
describe = p4.run('describe', changeList)
print describe
description = describe[0].get('desc')
print description
description = description.replace('[', '')
description = description.replace(']', '')
print description
首先描述打印
[{'status': 'pending', 'changeType': 'public', 'rev': ['21'], 'client': 'workspace1', 'user': 'username', 'time': '1432010818', 'action': ['edit'], 'type': ['text'], 'depotFile': ['//depot/repo/Vagrantfile'], 'change': '12345', 'desc': '[ABC-789] testfile commit'}]
第一个描述打印
[ABC-789] testfile commit
第二个描述删除了方括号
ABC-789 testfile commit