Controller.extend_circuit's failure check is broken

-    elif response.code == ('512', '552'):

Should be

+    elif response.code in ('512', '552'):

I also thought it would be a good idea to add some sample code to the documentation. Because, path-specification might not be very obvious, and because examples are great.

Please review and merge this branch.