diff options
author | lloyd <[email protected]> | 2011-11-10 18:34:40 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2011-11-10 18:34:40 +0000 |
commit | 8f590236f5f9bde3044fce715b69aac33e4a447a (patch) | |
tree | f5812958219d294a22bacfccf54e63105c50a191 /configure.py | |
parent | 982fd6891715ed0a2d3d00ee1b9afa249e2f48a4 (diff) |
Log the detected revision, if mtn reports something
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.py b/configure.py index 1cd9b748e..6fdaf16e7 100755 --- a/configure.py +++ b/configure.py @@ -53,6 +53,8 @@ def get_vc_revision(): logging.debug('Error getting rev from monotone - %s' % (stderr)) return 'unknown' + logging.debug('Monotone reported revision ' + stdout.strip()) + return 'mtn:' + stdout.strip() except OSError as e: logging.debug('Error getting rev from monotone - %s' % (e[1])) |