Skip to content

Commit

Permalink
Renamed jwt CLI script to jwt-cli to avoid issues with jwt script ove…
Browse files Browse the repository at this point in the history
…rlapping with the jwt package. Fixes #130
  • Loading branch information
mark-adams committed Oct 24, 2015
1 parent d338883 commit 9c835e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion jwt/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def main():
'''
p = optparse.OptionParser(
usage=usage,
prog=__package__,
prog='jwt-cli',
version='%s %s' % (__package__, __version__),
)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def get_version(package):
),
entry_points={
'console_scripts': [
'jwt = jwt.__main__:main'
'jwt-cli = jwt.__main__:main'
]
}
)

0 comments on commit 9c835e2

Please sign in to comment.