Commit a2d03898 authored by Julien Muchembled's avatar Julien Muchembled

erp5testnode: fix parsing to get repository hash

parent 37780d39
......@@ -219,7 +219,7 @@ branch = %(branch)s
for i, repository_revision in enumerate(test_revision.split(',')):
vcs_repository = vcs_repository_list[i]
repository_path = vcs_repository['repository_path']
revision = repository_revision.split('-')[1]
revision = repository_revision.rsplit('-', 1)[1]
# other testnodes on other boxes are already ready to test another
# revision
log(' %s at %s' % (repository_path, revision))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment