Skip to content

Commit

Permalink
Fix inconsistency in python tracing
Browse files Browse the repository at this point in the history
  • Loading branch information
florianschanda committed Oct 4, 2023
1 parent b01cbdb commit 582937e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
* The `lobster-html-report` tool now respects line-breaks in item
descriptions.

* The `lobster-python` tool now also includes the module name if you
trace to a class, similar to how the module name is included if you
trace to a function or method.

### 0.9.14

* The `lobster-codebeamer` tool has a new option `--ignore-ssl-errors`
Expand Down
2 changes: 1 addition & 1 deletion lobster/tools/python/python.py
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ def to_lobster(self, schema, items):
location = self.location,
language = "Python",
kind = self.kind,
name = self.name)
name = self.fqn())

# If we have tags or justifications on the class itself, we
# give precedence to that.
Expand Down

0 comments on commit 582937e

Please sign in to comment.