瀏覽代碼

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'])