Skip to content
This repository has been archived by the owner on Oct 23, 2023. It is now read-only.

Commit

Permalink
Fix Client.get_ident() example in docstring
Browse files Browse the repository at this point in the history
raven.base.Client doesn't have a `process()` method.
  • Loading branch information
mgedmin committed Apr 16, 2014
1 parent 6d487a8 commit 339319d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion raven/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ def get_ident(self, result):
"""
Returns a searchable string representing a message.
>>> result = client.process(**kwargs)
>>> result = client.capture(**kwargs)
>>> ident = client.get_ident(result)
"""
return '$'.join(result)
Expand Down

0 comments on commit 339319d

Please sign in to comment.