aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2011-11-10 18:34:40 +0000
committerlloyd <[email protected]>2011-11-10 18:34:40 +0000
commit8f590236f5f9bde3044fce715b69aac33e4a447a (patch)
treef5812958219d294a22bacfccf54e63105c50a191 /configure.py
parent982fd6891715ed0a2d3d00ee1b9afa249e2f48a4 (diff)
Log the detected revision, if mtn reports something
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
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]))