equal
deleted
inserted
replaced
802 return True |
802 return True |
803 |
803 |
804 # Other concepts. |
804 # Other concepts. |
805 if name in ('bundle2',): |
805 if name in ('bundle2',): |
806 return True |
806 return True |
|
807 |
|
808 # Alias command-* to presence of command of that name. |
|
809 if name.startswith('command-'): |
|
810 return name[len('command-'):] in self._descriptor['commands'] |
807 |
811 |
808 return False |
812 return False |
809 |
813 |
810 def requirecap(self, name, purpose): |
814 def requirecap(self, name, purpose): |
811 if self.capable(name): |
815 if self.capable(name): |