Skip to content
This repository has been archived by the owner on Jan 11, 2022. It is now read-only.

Commit

Permalink
better fix for #9
Browse files Browse the repository at this point in the history
  • Loading branch information
mriehl committed Jan 18, 2017
1 parent adc4f9e commit 31b1adc
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
summary = 'Merge YAML data from given files, dir or file glob'
authors = [Author('Schlomo Schapiro', "schlomo.schapiro@immobilienscout24.de")]
url = 'https://github.com/ImmobilienScout24/yamlreader'
version = '3.0.3'
version = '3.0.4'
description = open("README.rst").read()
license = 'Apache License 2.0'

Expand All @@ -25,7 +25,7 @@ def set_properties(project):
project.depends_on("PyYAML")
project.depends_on("six")

project.set_property('distutils_console_scripts', ['yamlreader=yamlreader:__main'])
project.set_property('distutils_console_scripts', ['yamlreader=yamlreader.yamlreader:__main'])

project.set_property("distutils_classifiers", [
"Programming Language :: Python",
Expand Down
4 changes: 2 additions & 2 deletions src/main/python/yamlreader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

from __future__ import print_function, absolute_import, unicode_literals, division

from .yamlreader import data_merge, yaml_load, YamlReaderError, __main
from .yamlreader import data_merge, yaml_load, YamlReaderError

__all__ = ['data_merge', 'yaml_load', 'YamlReaderError', '__main']
__all__ = ['data_merge', 'yaml_load', 'YamlReaderError']

0 comments on commit 31b1adc

Please sign in to comment.