Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
P-T-I committed Sep 3, 2021
1 parent 0197140 commit cc1e26f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CveXplore/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.5.8
0.2.5.8.dev6
4 changes: 2 additions & 2 deletions CveXplore/cli_cmds/stats/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@
def stats_cmd(ctx, datasource, pretty, output="json"):
if ctx.invoked_subcommand is None:
printer(
input_data=ctx.obj["data_source"].get_db_content_stats,
input_data=ctx.obj["data_source"].get_db_content_stats(),
pretty=pretty,
output=output,
)
else:
printer(
input_data=ctx.obj["data_source"].get_db_content_stats,
input_data=ctx.obj["data_source"].get_db_content_stats(),
pretty=pretty,
output=output,
)
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
long_description=README,
long_description_content_type="text/x-rst",
package_data={"CveXplore": ["LICENSE", "VERSION", ".cvexplore-complete.bash"]},
include_package_data=True,
entry_points='''
[console_scripts]
cvexplore=CveXplore.cli:main
Expand Down

0 comments on commit cc1e26f

Please sign in to comment.