Skip to content

Commit

Permalink
change metadata output file name of get_summary_from_bag.py
Browse files Browse the repository at this point in the history
  • Loading branch information
YvesSchoenberg committed Sep 7, 2023
1 parent 4aff8cd commit b6196e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "robologs-ros-utils"
version = "0.1.1a44"
version = "0.1.1a45"
description = "robologs-ros-utils is an open source library of containerized data transformations for the robotics and drone communities"
authors = ["roboto.ai <[email protected]>"]
license = "Apache-2.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def get_summary(input, output, file_name, split, hidden):
if split:
for bag_path, bag_info in rosbag_info_dict.items():
bag_dir = os.path.dirname(bag_path)
bag_name = os.path.basename(bag_path).replace(".bag", ".json")
bag_name = os.path.basename(bag_path) + ".json"
if hidden:
bag_name = "." + bag_name

Expand Down

0 comments on commit b6196e5

Please sign in to comment.