summaryrefslogtreecommitdiff
path: root/dashboard_website/dashboard.py
diff options
context:
space:
mode:
Diffstat (limited to 'dashboard_website/dashboard.py')
-rw-r--r--dashboard_website/dashboard.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard_website/dashboard.py b/dashboard_website/dashboard.py
index 7d0d920..0fe3ece 100644
--- a/dashboard_website/dashboard.py
+++ b/dashboard_website/dashboard.py
@@ -250,7 +250,7 @@ def siteControls():
if db.loadDirty("dirt.csv") != 0:
return jsonify({"status" : "ERROR"})
return jsonify({"status" : "OK"})
- elif cmd == "loadClean":
+ elif cmd == "loadSave":
dirty_csv = request.files['cleanfile']
dirty_csv.save("clean.csv")
if db.load("clean.csv") != 0: