Skip to content

Commit

Permalink
Merge acc12dc into a7c15db
Browse files Browse the repository at this point in the history
  • Loading branch information
nicfit committed Mar 21, 2020
2 parents a7c15db + acc12dc commit ee57aa4
Show file tree
Hide file tree
Showing 11 changed files with 670 additions and 107 deletions.
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -239,12 +239,12 @@ pypi-release:
fi \
done

sdist: build
sdist: clean build
python setup.py sdist --formats=gztar,zip
python setup.py bdist_egg
python setup.py bdist_wheel

dist: clean sdist docs-dist
dist: sdist docs-dist
@# The cd dist keeps the dist/ prefix out of the md5sum files
cd dist && \
for f in $$(ls); do \
Expand Down
4 changes: 2 additions & 2 deletions eyed3/__about__.py
Expand Up @@ -14,8 +14,8 @@ def __parse_version(v): # pragma: nocover
return ver, rel, ver_info


__version__ = "0.9.3"
__release_name__ = "It Dawned On Me"
__version__ = "0.9.4a0"
__release_name__ = ""
__years__ = "2002-2020"

_, __release__, __version_info__ = __parse_version(__version__)
Expand Down
2 changes: 1 addition & 1 deletion eyed3/__init__.py
Expand Up @@ -20,7 +20,7 @@
class Error(Exception):
"""Base exception type for all eyed3 errors."""
def __init__(self, *args):
super(Error, self).__init__(*args)
super().__init__(*args)
if args:
# The base class will do exactly this if len(args) == 1,
# but not when > 1. Note, the 2.7 base class will, 3 will not.
Expand Down

0 comments on commit ee57aa4

Please sign in to comment.