Skip to content

Commit

Permalink
Fix #9
Browse files Browse the repository at this point in the history
  • Loading branch information
Matteo De Wint committed Nov 2, 2016
1 parent 7f582c5 commit 8968900
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion s3pypi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__prog__ = 's3pypi'
__version__ = u'0.1.2'
__version__ = u'0.1.3'
2 changes: 1 addition & 1 deletion s3pypi/package.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def create(wheel=True):
except CalledProcessError as e:
raise RuntimeError(e.output.rstrip())

match = re.search('^creating (.+)$', stdout, flags=re.MULTILINE)
match = re.search('^copying files to (.+)\.\.\.$', stdout, flags=re.MULTILINE)

if not match:
raise RuntimeError(stdout)
Expand Down

0 comments on commit 8968900

Please sign in to comment.