コード例 #1
0
ファイル: base.py プロジェクト: pt15/python-solumclient
 def human_id(self):
     """Human-readable ID which can be used for bash completion.
     """
     if self.HUMAN_ID:
         name = getattr(self, self.NAME_ATTR, None)
         if name is not None:
             return strutils.to_slug(name)
     return None
コード例 #2
0
ファイル: base.py プロジェクト: noorul/python-solumclient-1
 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