diff options
-rw-r--r-- | elivepatch_server/resources/dispatcher.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/elivepatch_server/resources/dispatcher.py b/elivepatch_server/resources/dispatcher.py index 9a7580c..92fbe4e 100644 --- a/elivepatch_server/resources/dispatcher.py +++ b/elivepatch_server/resources/dispatcher.py @@ -69,7 +69,7 @@ class SendLivePatch(Resource): args['UUID'] = check_uuid(args['UUID']) uuid_dir = get_uuid_dir(args['UUID']) - livepatch_full_path = os.path.join(uuid_dir, 'kpatch-01.ko') + livepatch_full_path = os.path.join(uuid_dir, 'kpatch-main.ko') try: with open(livepatch_full_path, 'rb') as fp: response = make_response(fp.read()) |