~psivaa/uci-engine/lander-jenkins-with-proxy

« back to all changes in this revision

Viewing changes to cli/ci_libs/ticket.py

  • Committer: Chris Johnston
  • Author(s): Ursula Junque (Ursinha), Chris Johnston
  • Date: 2014-03-17 18:03:42 UTC
  • mfrom: (400.5.5 get-swift-image)
  • Revision ID: chris_johnston-20140317180342-v8e3rw9ei6ai0p9e
[r=PS Jenkins bot, Andy Doan] Add the ability to get_image to the CLI  from Chris Johnston

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
            "name": file,
99
99
            "subticket": self.subticket_uri,
100
100
        }
101
 
        location_ = utils.post(utils.CI_URL + utils.ARTIFACT_BASE, data=data)
 
101
        location_ = utils.post(utils.CI_URL + utils.SUBTICKET_ARTIFACT_BASE,
 
102
                               data=data)
102
103
        log.info("Created artifact: %s" % location_)
103
104
 
104
105