Skip to content

Commit

Permalink
Updating manifest to include dev requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
pas256 committed Nov 11, 2013
1 parent 755f5ff commit 8723f09
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion MANIFEST.in
@@ -1 +1 @@
include LICENSE.txt README.rst requirements.txt
include LICENSE.txt README.rst requirements.txt dev_requirements.txt
2 changes: 1 addition & 1 deletion distami/__init__.py
Expand Up @@ -13,4 +13,4 @@
# limitations under the License.

__author__ = 'Peter Sankauskas'
__version__ = '1.0.4'
__version__ = '1.0.5'
2 changes: 1 addition & 1 deletion distami/core.py
Expand Up @@ -32,7 +32,7 @@ def __init__(self, ami_id, ami_region):
log.info("Looking for AMI %s in region %s", self._ami_id, self._ami_region)
try:
self._conn = ec2.connect_to_region(self._ami_region)
except boto.exception.NoAuthHandlerFound, e:
except boto.exception.NoAuthHandlerFound:
log.error('Could not connect to region %s' % self._ami_region)
log.critical('No AWS credentials found. To configure Boto, please read: http://boto.readthedocs.org/en/latest/boto_config_tut.html')
raise DistamiException('No AWS credentials found.')
Expand Down

0 comments on commit 8723f09

Please sign in to comment.