summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornitromaster101 <nitromaster101@5914aa95-5b3a-0410-a3b5-7b719e7fe9b2>2009-06-19 18:30:27 +0000
committernitromaster101 <nitromaster101@5914aa95-5b3a-0410-a3b5-7b719e7fe9b2>2009-06-19 18:30:27 +0000
commit8b4c6b8d1c22779950a4cf34e813f61b7facda68 (patch)
tree2cc1a0c58b721197de9646398ee4616726c4145a
parent8137de9603829aa45002a2a750d9655269241fc5 (diff)
remove silly debug messages
git-svn-id: http://freebase-python.googlecode.com/svn/trunk@112 5914aa95-5b3a-0410-a3b5-7b719e7fe9b2
-rw-r--r--freebase/api/session.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/freebase/api/session.py b/freebase/api/session.py
index c3808cc..70cb426 100644
--- a/freebase/api/session.py
+++ b/freebase/api/session.py
@@ -53,20 +53,16 @@ SEPARATORS = (",", ":")
try:
import jsonlib2 as json
- print "using jsonlib2"
except ImportError:
try:
import json
- print "using json"
except ImportError:
try:
import simplejson as json
- print "using simplejson"
except ImportError:
try:
# appengine provides simplejson at django.utils.simplejson
from django.utils import simplejson as json
- print "using django.utils.simplejson"
except ImportError:
raise Exception("unable to import neither json, simplejson, jsonlib2, or django.utils.simplejson")