Skip to content

Commit be31b8a

Browse files
authored
Merge pull request #16 from PostHog/tom/fixbug3
Fix analytics error
2 parents 4475af8 + a9463c4 commit be31b8a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/analytics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def capture(event: str, distinct_id: str, properties: dict | None = None) -> Non
5959
client = get_posthog_client()
6060
if client:
6161
all_properties = {"application": APPLICATION, **(properties or {})}
62-
client.capture(distinct_id, event, all_properties)
62+
client.capture(distinct_id, event, properties=all_properties)
6363

6464

6565
def shutdown() -> None:

0 commit comments

Comments
 (0)