~ionutbalutoiu/charms/trusty/neutron-api/next

« back to all changes in this revision

Viewing changes to hooks/charmhelpers/fetch/giturl.py

  • Committer: Corey Bryant
  • Date: 2015-02-19 21:24:50 UTC
  • mfrom: (77.2.5 trunk)
  • Revision ID: corey.bryant@canonical.com-20150219212450-yelpsdntpztvnogc
[gnuoy,r=1chb1n,r=corey.bryant] Add basic Amulet tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
    apt_install("python-git")
33
33
    from git import Repo
34
34
 
35
 
from git.exc import GitCommandError
 
35
from git.exc import GitCommandError  # noqa E402
36
36
 
37
37
 
38
38
class GitUrlFetchHandler(BaseFetchHandler):