aboutsummaryrefslogtreecommitdiff
path: root/web/app/main.py
diff options
context:
space:
mode:
Diffstat (limited to 'web/app/main.py')
-rw-r--r--web/app/main.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/main.py b/web/app/main.py
index e834c0c..d48eb04 100644
--- a/web/app/main.py
+++ b/web/app/main.py
@@ -21,7 +21,7 @@ main = Blueprint('main', __name__)
@login_required
def home():
jobs = job_manager.get_jobs()
- completed_jobs = TinyDB('jobs.json').all()
+ completed_jobs = TinyDB('app/jobs.json').all()
return render_template('home.html', user=current_user, states=states, acts=act_list, completed_jobs=completed_jobs, jobs=jobs)
@main.route('/logout')