Commit abdf90eb authored by PidgeyL's avatar PidgeyL
Browse files

fix structure change bug

parent 32a27ad0
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -473,7 +473,7 @@ def admin():
@app.route('/admin/updatedb')
@login_required
def updatedb():
    os.system("python3 " + os.path.join(_runPath, "../bin/db_updater.py -civ"))
    os.system("python3 " + os.path.join(_runPath, "../sbin/db_updater.py -civ"))
    status = ["db_updated", "success"]
    return render_template('admin.html', status=status, stats=adminStats())