Skip to content

Commit

Permalink
Merge branch 'hotfix'
Browse files Browse the repository at this point in the history
  • Loading branch information
Konstantinos committed Jul 25, 2019
2 parents 2c93699 + bfb2afc commit b58a74f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .scrutinizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ build:
override:
- tox
-
command: coverage combine
command: coverage
coverage:
file: .coverage
config_file: '.coveragerc'
Expand Down
6 changes: 3 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Overview
:target: https://ci.appveyor.com/project/boromir674/music-album-creator/branch/master

.. |coveralls| image:: https://coveralls.io/repos/github/boromir674/music-album-creator/badge.svg?branch=master
:alt: Coverage Status
:alt: Coveralls Coverage Status
:target: https://coveralls.io/github/boromir674/music-album-creator?branch=master

.. |scrutinizer_code_quality| image:: https://scrutinizer-ci.com/g/boromir674/music-album-creator/badges/quality-score.png?b=master
Expand All @@ -60,9 +60,9 @@ Overview
:alt: Supported versions
:target: https://pypi.org/project/music-album-creation

.. |commits_since| image:: https://img.shields.io/github/commits-since/boromir674/music-album-creator/v1.1.0.svg
.. |commits_since| image:: https://img.shields.io/github/commits-since/boromir674/music-album-creator/v1.1.2.svg
:alt: Commits since latest release
:target: https://github.com/boromir674/music-album-creator/compare/v1.1.1...master
:target: https://github.com/boromir674/music-album-creator/compare/v1.1.2...master


.. |supported-implementations| image:: https://img.shields.io/pypi/implementation/music-album-creator.svg
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def readme():

setup(
name='music_album_creation',
version='1.1.1',
version='1.1.2',
description='A CLI application intending to automate offline music library building.',
long_description=readme(),
keywords='music automation download youtube metadata',
Expand Down
2 changes: 1 addition & 1 deletion src/music_album_creation/format_classification/dataset.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def __new__(cls, *args, **kwargs):
c_globe = glob.glob('{}/*{}'.format(kwargs['datasets_root_dir'], cls.post_fix))
try:
cls.__instance._datasets = {re.match(cls.reg, os.path.basename(file)).group(1): file for file in c_globe}
except AttributeError as e:
except AttributeError:
raise RuntimeError("Unable to find datasets (txt files) in directory '{}'. Most probably one of [{}] did not match with regex '{}'.".format(dir_requested, ', '.join(str(_) for _ in c_globe), cls.reg))
cls.__instance.datasets_root_dir = kwargs['datasets_root_dir']
return cls.__instance
Expand Down

0 comments on commit b58a74f

Please sign in to comment.