~hopem/charms/trusty/cinder-ceph/lp1535062

« back to all changes in this revision

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

  • Committer: Liam Young
  • Date: 2015-07-29 10:50:52 UTC
  • Revision ID: liam.young@canonical.com-20150729105052-hus83ph7t07wlfsd
[gnuoy,trivial] Pre-release charmhelper sync

Show diffs side-by-side

added added

removed removed

Lines of Context:
67
67
        try:
68
68
            self.clone(source, dest_dir, branch, depth)
69
69
        except GitCommandError as e:
70
 
            raise UnhandledSource(e.message)
 
70
            raise UnhandledSource(e)
71
71
        except OSError as e:
72
72
            raise UnhandledSource(e.strerror)
73
73
        return dest_dir