From b9c87898dacf5b671dc1fb8ddfd7d2bd3e1de868 Mon Sep 17 00:00:00 2001 From: Cédric Bonhomme Date: Tue, 10 Jun 2014 07:33:55 +0200 Subject: Not writing JSON file when importing an account. --- pyaggr3g470r/views.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'pyaggr3g470r/views.py') diff --git a/pyaggr3g470r/views.py b/pyaggr3g470r/views.py index 1dd651e5..cfd60206 100644 --- a/pyaggr3g470r/views.py +++ b/pyaggr3g470r/views.py @@ -570,10 +570,8 @@ def management(): if not allowed_file(data.filename): flash(gettext('File not allowed.'), 'danger') else: - json_path = os.path.join("./pyaggr3g470r/var/", data.filename) - data.save(json_path) try: - nb = utils.import_json(g.user.email, json_path) + nb = utils.import_json(g.user.email, data.read()) flash(gettext('Account imported.'), "success") except: flash(gettext("Impossible to import the account."), "danger") -- cgit