# HG changeset patch # User Doug Simon # Date 1382432516 -7200 # Node ID bb665959fb1293ed6f4f75e5d8a6b8645481bcbf # Parent 21aa1ce5c6664a994cad7ef2b4e65e70fe2507d3 commented out eager initialization of Suite.version diff -r 21aa1ce5c666 -r bb665959fb12 mxtool/mx.py --- 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()