Skip to content

Commit

Permalink
Merge pull request #719 from efiop/master
Browse files Browse the repository at this point in the history
Misc build fixes
  • Loading branch information
efiop authored May 17, 2018
2 parents 03d4774 + 7709f57 commit 91c16e2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
3 changes: 1 addition & 2 deletions dvc/cloud/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
import threading

import boto3
import botocore

from dvc.config import Config
from dvc.logger import Logger
Expand Down Expand Up @@ -118,7 +117,7 @@ def _get_key(self, path):
try:
self.s3.Object(self.storage_bucket, key_name).get()
return AWSKey(self.storage_bucket, key_name)
except botocore.errorfactory.ClientError:
except Exception:
return None

def _new_key(self, path):
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ pyyaml>=3.12
gitpython>=2.1.8
ntfsutils>=0.1.4
setuptools>=34.0.0
pytest>=3.3.1
nanotime>=0.5.2
pyasn1>=0.4.1
schema>=0.6.7
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"gitpython>=2.1.8",
"ntfsutils>=0.1.4",
"setuptools>=34.0.0",
"pytest>=3.3.1",
"nanotime>=0.5.2",
"pyasn1>=0.4.1",
"schema>=0.6.7",
Expand Down

0 comments on commit 91c16e2

Please sign in to comment.