gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libeufin] branch master updated: no PUT for CLI


From: gnunet
Subject: [libeufin] branch master updated: no PUT for CLI
Date: Fri, 22 Nov 2019 22:14:06 +0100

This is an automated email from the git hooks/post-receive script.

marcello pushed a commit to branch master
in repository libeufin.

The following commit(s) were added to refs/heads/master by this push:
     new 393bbe0  no PUT for CLI
393bbe0 is described below

commit 393bbe05e44a99773befd49758d0377722d153ed
Author: Marcello Stanisci <address@hidden>
AuthorDate: Fri Nov 22 22:14:01 2019 +0100

    no PUT for CLI
---
 sandbox/src/main/python/libeufin-cli | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sandbox/src/main/python/libeufin-cli 
b/sandbox/src/main/python/libeufin-cli
index af9d1f1..0afc57c 100755
--- a/sandbox/src/main/python/libeufin-cli
+++ b/sandbox/src/main/python/libeufin-cli
@@ -6,7 +6,7 @@ import json
 import hashlib
 import errno
 from datetime import datetime
-from requests import post, get, put
+from requests import post, get
 from Crypto.PublicKey import RSA 
 from urllib.parse import urljoin
 from getpass import getpass
@@ -86,7 +86,7 @@ def backup(obj, customer_id, output_file):
     url = urljoin(obj["base_url"], 
"/ebics/subscribers/{}/backup".format(customer_id))
 
     try:
-        response = put(url, json=dict(passphrase=passphrase))
+        response = post(url, json=dict(passphrase=passphrase))
     except Exception:
         print("Could not reach the bank")
         return

-- 
To stop receiving notification emails like this one, please contact
address@hidden.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]