Ejemplo n.º 1
0
 def human_id(self):
     """Subclasses may override this provide a pretty ID which can be used
     for bash completion.
     """
     if 'name' in self.__dict__ and self.HUMAN_ID:
         return utils.slugify(self.name)
     return None
Ejemplo n.º 2
0
 def human_id(self):
     """Subclasses may override this provide a pretty ID which can be used
     for bash completion.
     """
     if 'name' in self.__dict__ and self.HUMAN_ID:
         return utils.slugify(self.name)
     return None
Ejemplo n.º 3
0
 def human_id(self):
     """Provides a pretty ID which can be used for bash completion."""
     if 'name' in self.__dict__ and self.HUMAN_ID:
         return utils.slugify(self.name)
     return None
Ejemplo n.º 4
0
 def human_id(self):
     """Provides a pretty ID which can be used for bash completion."""
     if 'name' in self.__dict__ and self.HUMAN_ID:
         return utils.slugify(self.name)
     return None