Skip to content

Commit

Permalink
fixed cli --version
Browse files Browse the repository at this point in the history
  • Loading branch information
attie committed Dec 4, 2019
1 parent 2a8ad47 commit ea663b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions koradctl/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ def __init__(self):
self.args = get_args()

if self.args.show_version:
import koradctl as me
print('%s version %s' % ( me.__proj_name__, me.__version__ ))
import koradctl.package as me
print('%s version %s' % ( me.proj_name, me.version ))
exit(0)

try:
Expand Down

0 comments on commit ea663b8

Please sign in to comment.