summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/Plugins/Git.py
diff options
context:
space:
mode:
authorChris St. Pierre <chris.a.st.pierre@gmail.com>2015-02-18 08:47:30 -0600
committerChris St. Pierre <chris.a.st.pierre@gmail.com>2015-02-18 08:47:30 -0600
commitdb4a3b0426f4912639c142366ff27594d54ce360 (patch)
treefe258d4b663b9607230e456cfa25cdfe29cb3a70 /src/lib/Bcfg2/Server/Plugins/Git.py
parented9920711a6020fa01d564db34e0ee4800718cc6 (diff)
parent89e7afbf74ffbbb54dd892bf2c4245aedee2a832 (diff)
downloadbcfg2-db4a3b0426f4912639c142366ff27594d54ce360.tar.gz
bcfg2-db4a3b0426f4912639c142366ff27594d54ce360.tar.bz2
bcfg2-db4a3b0426f4912639c142366ff27594d54ce360.zip
Merge pull request #250 from stpierre/blanket-except-plugins-lint
Remove blanket excepts from plugins and lint
Diffstat (limited to 'src/lib/Bcfg2/Server/Plugins/Git.py')
-rw-r--r--src/lib/Bcfg2/Server/Plugins/Git.py27
1 files changed, 11 insertions, 16 deletions
diff --git a/src/lib/Bcfg2/Server/Plugins/Git.py b/src/lib/Bcfg2/Server/Plugins/Git.py
index 9012fceb0..d0ae010fa 100644
--- a/src/lib/Bcfg2/Server/Plugins/Git.py
+++ b/src/lib/Bcfg2/Server/Plugins/Git.py
@@ -41,22 +41,17 @@ class Git(Version):
def get_revision(self):
"""Read git revision information for the Bcfg2 repository."""
- try:
- if HAS_GITPYTHON:
- return self.repo.head.commit.hexsha
- else:
- cmd = ["git", "--git-dir", self.vcs_path,
- "--work-tree", Bcfg2.Options.setup.vcs_root,
- "rev-parse", "HEAD"]
- self.debug_log("Git: Running %s" % cmd)
- result = self.cmd.run(cmd)
- if not result.success:
- raise Exception(result.stderr)
- return result.stdout
- except:
- raise PluginExecutionError("Git: Error getting revision from %s: "
- "%s" % (Bcfg2.Options.setup.vcs_root,
- sys.exc_info()[1]))
+ if HAS_GITPYTHON:
+ return self.repo.head.commit.hexsha
+ else:
+ cmd = ["git", "--git-dir", self.vcs_path,
+ "--work-tree", Bcfg2.Options.setup.vcs_root,
+ "rev-parse", "HEAD"]
+ self.debug_log("Git: Running %s" % cmd)
+ result = self.cmd.run(cmd)
+ if not result.success:
+ raise PluginExecutionError(result.stderr)
+ return result.stdout
def Update(self, ref=None):
""" Git.Update() => True|False