示例#1
0
 def get(self, uuid):
     """Return the history for a provided UUID."""
     install_status = InstallStatus(uuid)
     history = install_status.get_history()
     if not history:
         return abort(404)
     return history
示例#2
0
 def get(self, uuid):
     """Returns the history for a provided UUID"""
     install_status = InstallStatus(uuid)
     history = install_status.get_history()
     if len(history) == 0:
         return abort(404)
     return history
示例#3
0
 def get(self, uuid):
     """Returns the history for a provided UUID"""
     install_status = InstallStatus(uuid)
     history = install_status.get_history()
     if len(history) == 0:
         return abort(404)
     return history