Esempio n. 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
Esempio n. 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
Esempio n. 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