Skip to content
Snippets Groups Projects
Commit d6e5b383 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Add API number in get_config()

parent 631d7330
No related branches found
No related tags found
No related merge requests found
...@@ -21,7 +21,8 @@ def get_config(): ...@@ -21,7 +21,8 @@ def get_config():
this = packages[0] this = packages[0]
deps = packages[1:] deps = packages[1:]
retval = "%s: %s (%s)\n" % (this.key, this.version, this.location) retval = "%s: %s [api=0x%04x] (%s)\n" % (this.key, this.version,
version.api, this.location)
retval += " - c/c++ dependencies:\n" retval += " - c/c++ dependencies:\n"
for k in sorted(externals): retval += " - %s: %s\n" % (k, externals[k]) for k in sorted(externals): retval += " - %s: %s\n" % (k, externals[k])
retval += " - python dependencies:\n" retval += " - python dependencies:\n"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment