aboutsummaryrefslogtreecommitdiffstats
path: root/git_deps
diff options
context:
space:
mode:
authorAdam Spiers <git@adamspiers.org>2018-05-15 22:43:17 +0100
committerAdam Spiers <git@adamspiers.org>2018-05-15 22:52:07 +0100
commit9766f55313ad85705232fafbf0504ecd0f6da23c (patch)
tree1686742cb014123e0d2049ce9d0e8b7d4da4c46e /git_deps
parent2f9ced05fb64dd9fb6708163682e2ec0fd503768 (diff)
downloadgit-deps-9766f55313ad85705232fafbf0504ecd0f6da23c.tar.gz
fix flake8 issues
Diffstat (limited to 'git_deps')
-rw-r--r--git_deps/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/git_deps/__init__.py b/git_deps/__init__.py
index 896994c..27a754c 100644
--- a/git_deps/__init__.py
+++ b/git_deps/__init__.py
@@ -2,5 +2,5 @@ import pkg_resources
try:
__version__ = pkg_resources.get_distribution(__name__).version
-except:
+except pkg_resources.DistributionNotFound:
__version__ = 'unknown'