Skip to content

Commit

Permalink
fix Main vs main
Browse files Browse the repository at this point in the history
  • Loading branch information
garanews committed Jul 29, 2019
1 parent 2746b20 commit 3c07621
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mans_to_es/mans_to_es.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,7 +556,7 @@ def main():
)

parser.add_argument(
"--version", dest="version", action="version", version="%(prog)s 1.2"
"--version", dest="version", action="version", version="%(prog)s 1.3"
)
args = parser.parse_args()

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

setuptools.setup(
name="mans_to_es",
version="1.2",
version="1.3",
author="LDO-CERT",
author_email="gcert@leonardocompany.com",
description="Send .mans to ElasticSearch",
Expand All @@ -28,7 +28,7 @@
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
entry_points={'console_scripts': ['mans_to_es=mans_to_es.mans_to_es:Main']},
entry_points={'console_scripts': ['mans_to_es=mans_to_es.mans_to_es:main']},
install_requires=[str(req.req) for req in parse_requirements(
'requirements.txt', session=PipSession(),
)],
Expand Down

0 comments on commit 3c07621

Please sign in to comment.