Skip to content

Commit

Permalink
stupid comma error
Browse files Browse the repository at this point in the history
  • Loading branch information
Gunther Klessinger committed Nov 3, 2016
1 parent 0edf057 commit a26c47a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mdv/markdownviewer.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
"""

__version__ = "1.4.0"
__version__ = "1.4.1"

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

setup(
name='mdv',
version=mdv.__version__
version=mdv.__version__,
packages=find_packages(),
author="Axiros GmbH",
author_email="[email protected]",
Expand All @@ -27,7 +27,7 @@
install_requires=["pyyaml", "pygments", "markdown", "docopt"],
include_package_data=True,
url='http://github.com/axiros/terminal_markdown_viewer',
download_url='http://github.com/axiros/terminal_markdown_viewer/tarball/1.4.0',
download_url='http://github.com/axiros/terminal_markdown_viewer/tarball/' + mdv.__version__,
keywords = ['markdown', 'markup', 'terminal', 'hilighting', 'syntax', 'source code'],
classifiers=[
"Programming Language :: Python",
Expand Down

0 comments on commit a26c47a

Please sign in to comment.