Example #1
0
 def human_id(self):
     """Human-readable ID which can be used for bash completion.
     """
     if self.NAME_ATTR in self.__dict__ and self.HUMAN_ID:
         return strutils.to_slug(getattr(self, self.NAME_ATTR))
     return None
 def human_id(self):
     """Human-readable ID which can be used for bash completion.
     """
     if self.NAME_ATTR in self.__dict__ and self.HUMAN_ID:
         return strutils.to_slug(getattr(self, self.NAME_ATTR))
     return None