diff --git a/Lesson_3/05_Serializing data from the database/Starter Code/endpoints_tester3.py b/Lesson_3/05_Serializing data from the database/Starter Code/endpoints_tester3.py index 77cf4b7..db17e72 100755 --- a/Lesson_3/05_Serializing data from the database/Starter Code/endpoints_tester3.py +++ b/Lesson_3/05_Serializing data from the database/Starter Code/endpoints_tester3.py @@ -12,7 +12,7 @@ #Making a POST Request print "Making a POST request to /puppies..." try: - url = address + "/puppies?name=Fido&description=Playful+Little+Puppy" + url = address + "/puppies/?name=Fido&description=Playful+Little+Puppy" h = httplib2.Http() resp, result = h.request(url, 'POST') obj = json.loads(result)