浏览代码

[raz] Remove left out print statement

Romain Rigaux 4 年之前
父节点
当前提交
d241595856
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      desktop/core/src/desktop/lib/rest/raz_http_client.py

+ 1 - 1
desktop/core/src/desktop/lib/rest/raz_http_client.py

@@ -46,7 +46,7 @@ class RazHttpClient(HttpClient):
     token = raz_client.get_url(action=http_method, path=url, headers=headers)
 
     signed_path = path + ('?' if '?' in url else '&') + token  # Same as using as params
-    print(111)
+
     return super(RazHttpClient, self).execute(
         http_method=http_method,
         path=signed_path,