summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
Diffstat (limited to 'tools')
-rwxr-xr-xtools/repopick.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/repopick.py b/tools/repopick.py
index 6e40f38..2b436ef 100755
--- a/tools/repopick.py
+++ b/tools/repopick.py
@@ -210,7 +210,7 @@ if __name__ == '__main__':
xml_root = ElementTree.fromstring(manifest)
projects = xml_root.findall('project')
remotes = xml_root.findall('remote')
- default_revision = xml_root.findall('default')[0].get('revision').split('/')[-1]
+ default_revision = xml_root.findall('default')[0].get('revision')
#dump project data into the a list of dicts with the following data:
#{project: {path, revision}}
@@ -228,6 +228,7 @@ if __name__ == '__main__':
if not name in project_name_to_data:
project_name_to_data[name] = {}
+ revision = revision.split('refs/heads/')[-1]
project_name_to_data[name][revision] = path
# get data on requested changes