lib/yam/request.rb in yam-0.0.4 vs lib/yam/request.rb in yam-0.0.5

- old
+ new

@@ -28,10 +28,10 @@ def request(method, path, params, options) conn = connection(options) path = (conn.path_prefix + path).gsub(/\/\//,'/') if conn.path_prefix != '/' - response = conn.send(method,path,params) + response = conn.send(method, path, params) response.body end end end