##// END OF EJS Templates
svn: allow legacy (pre SVN 1.7) extraction of post commit data....
marcink -
r824:58907cca stable
parent child Browse files
Show More
@@ -691,7 +691,14 b' def svn_post_commit(repo_path, commit_da'
691 691 """
692 692 commit_data is path, rev, txn_id
693 693 """
694 path, commit_id, txn_id = commit_data
694 if len(commit_data) == 3:
695 path, commit_id, txn_id = commit_data
696 elif len(commit_data) == 2:
697 log.error('Failed to extract txn_id from commit_data using legacy method. '
698 'Some functionality might be limited')
699 path, commit_id = commit_data
700 txn_id = None
701
695 702 branches = []
696 703 tags = []
697 704
General Comments 0
You need to be logged in to leave comments. Login now