Skip to content

Commit

Permalink
Reverted Exeception text to the previous, expected value.
Browse files Browse the repository at this point in the history
  • Loading branch information
lenards committed Nov 13, 2013
1 parent c5ab10c commit 3cd41da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions KISSmetrics/client_compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,11 +144,11 @@ def reset(self):

def check_identify(self):
if self.identity is None:
raise Exception('Need to identify first: KM.identify(<user>)')
raise Exception('Need to identify first (KM.identify <user>)')

def check_init(self):
if self.key is None:
raise Exception('Need to initialize first: KM(<your_key>)')
raise Exception('Need to initialize first (KM.init <your_key>)')

def now(self):
return datetime.datetime.utcnow()
Expand Down

0 comments on commit 3cd41da

Please sign in to comment.