Skip to content

Commit

Permalink
Fix problem with hyphen after the version number
Browse files Browse the repository at this point in the history
  • Loading branch information
mkobos committed Sep 23, 2014
1 parent 987bd24 commit 12b83cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions avroknife/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
__title__ = 'avroknife'
__author__ = 'Mateusz Kobos, Pawel Szostek'
__email__ = '[email protected]'
__version__ = open(os.path.join(os.path.dirname(__file__), 'RELEASE-VERSION')).read()
__version__ = open(os.path.join(os.path.dirname(__file__), 'RELEASE-VERSION')).read().strip()
__description__ = 'Utility for browsing and simple manipulation of Avro-based files'
__license__ = 'Apache License, Version 2.0'
__license__ = 'Apache License, Version 2.0'

0 comments on commit 12b83cd

Please sign in to comment.