comparison mxtool/mx.py @ 12581:8fde330c11cd

Merge.
author Doug Simon <doug.simon@oracle.com>
date Fri, 25 Oct 2013 01:26:27 +0200
parents 693622f11dc3
children a9f750305a38
comparison
equal deleted inserted replaced
12580:7876c59a7a2f 12581:8fde330c11cd
766 766
767 if self.name is None: 767 if self.name is None:
768 abort('Missing "suite=<name>" in ' + projectsFile) 768 abort('Missing "suite=<name>" in ' + projectsFile)
769 769
770 def _commands_name(self): 770 def _commands_name(self):
771 return 'mx_' + self.name.replace('-','_') 771 return 'mx_' + self.name.replace('-', '_')
772 772
773 def _find_commands(self, name): 773 def _find_commands(self, name):
774 commandsPath = join(self.mxDir, name + '.py') 774 commandsPath = join(self.mxDir, name + '.py')
775 if exists(commandsPath): 775 if exists(commandsPath):
776 return name 776 return name