From c94443a8c375d487151aab035dea7f361dba6fe8 Mon Sep 17 00:00:00 2001 From: Dan Helfman Date: Wed, 15 Oct 2008 12:53:00 -0700 Subject: [PATCH] Made signup conversion tracking more accurate. --- controller/Notebooks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/Notebooks.py b/controller/Notebooks.py index f7947b4..e7dae5b 100644 --- a/controller/Notebooks.py +++ b/controller/Notebooks.py @@ -156,7 +156,7 @@ class Notebooks( object ): # if the user doesn't have any storage bytes yet, they're a new user, so see what type of # conversion this is (demo or signup) - if result[ "user" ].storage_bytes == 0: + if result[ "user" ].username != u"anonymous" and result[ "user" ].storage_bytes == 0: if u"this is a demo" in [ note.title for note in result[ "startup_notes" ] ]: result[ "conversion" ] = u"demo" else: