~tribaal/charm-helpers/change-license

« back to all changes in this revision

Viewing changes to charmhelpers/fetch/__init__.py

  • Committer: Jorge Niedbalski
  • Date: 2014-10-20 16:26:20 UTC
  • mfrom: (231.2.5 charm-helpers)
  • Revision ID: jorge.niedbalski@canonical.com-20141020162620-686rllx4a34vwf3g
[mattyw, r=niedbalski] Added a GitUrlFetchHandler class based on the BaseFetchHandler that is able to clone github repos over https.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
FETCH_HANDLERS = (
73
73
    'charmhelpers.fetch.archiveurl.ArchiveUrlFetchHandler',
74
74
    'charmhelpers.fetch.bzrurl.BzrUrlFetchHandler',
 
75
    'charmhelpers.fetch.giturl.GitUrlFetchHandler',
75
76
)
76
77
 
77
78
APT_NO_LOCK = 100  # The return code for "couldn't acquire lock" in APT.