diff --git a/Lesson_3/06_Adding Features to your Mashup/Starter Code/tester.py b/Lesson_3/06_Adding Features to your Mashup/Starter Code/tester.py index b6373d8..e286767 100755 --- a/Lesson_3/06_Adding Features to your Mashup/Starter Code/tester.py +++ b/Lesson_3/06_Adding Features to your Mashup/Starter Code/tester.py @@ -34,7 +34,7 @@ resp, result = h.request(url,'POST') if resp['status'] != '200': raise Exception('Received an unsuccessful status code of %s' % resp['status']) - print json.loads(result).iteritems() + print json.loads(result) url = address + '/restaurants?location=Shanghai+China&mealType=Sandwiches' h = httplib2.Http()