aboutsummaryrefslogtreecommitdiff
path: root/utils/mangle-jobs/test.mangle
blob: ea5dd84a2c8b6d43ba70c15e2f8d1ae79e964810 (plain)
1
2
3
4
5
6
7
# Sample test mangle script

def mangle(tree):
    tags = tree.xpath('/project/description')
    if not tags: return
    tag = tags[0]
    tag.text = 'Excitingly created.'