changeset 12513:bb665959fb12

commented out eager initialization of Suite.version
author Doug Simon <doug.simon@oracle.com>
date Tue, 22 Oct 2013 11:01:56 +0200
parents 21aa1ce5c666
children 8c64f10f86b7
files mxtool/mx.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mxtool/mx.py	Tue Oct 22 11:01:32 2013 +0200
+++ b/mxtool/mx.py	Tue Oct 22 11:01:56 2013 +0200
@@ -768,7 +768,8 @@
         self.primary = primary
         self.name = _suitename(mxDir)  # validated in _load_projects
         self.version = None  # _hg.tip checks current version if not None
-        self.version = _hg.tip(self, False)
+        # TODO this forces hg to be run every time mx is run
+        #self.version = _hg.tip(self, False)
         if load:
             # load suites bottom up to make sure command overriding works properly
             self._load_imports()