Esempio n. 1
0
 def name(self):
   """
     Return the name of the application.  If set_name was never explicitly called,
     the application framework will attempt to autodetect the name of the application
     based upon the location of __main__.
   """
   if self._name is not None:
     return self._name
   else:
     return Inspection.find_application_name()
Esempio n. 2
0
 def name(self):
     """
   Return the name of the application.  If set_name was never explicitly called,
   the application framework will attempt to autodetect the name of the application
   based upon the location of __main__.
 """
     if self._name is not None:
         return self._name
     else:
         try:
             return Inspection.find_application_name()
         except:
             return 'unknown'