소스 검색

Fix wrong output argument order for POST.

Stefano Cossu 7 년 전
부모
커밋
4b670b819d
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      lakesuperior/endpoints/ldp.py

+ 1 - 1
lakesuperior/endpoints/ldp.py

@@ -160,7 +160,7 @@ def post_resource(parent):
         'Location' : rsrc.uri,
     })
 
-    return rsrc.uri, out_headers, 201
+    return rsrc.uri, 201, out_headers
 
 
 @ldp.route('/<path:uuid>', methods=['PUT'])