diff --git a/loaders.py b/loaders.py
index 9e0c74c6877a6f4cc0362d8f50fb8c9757735dcb..26434d89b7972f7c16d2ee72d1b868c479ca8dd3 100644
--- a/loaders.py
+++ b/loaders.py
@@ -45,7 +45,7 @@ def export_evaluation_report(report):
         DataFrame: Merged ratings and items data.
     """
     report_name = f"evaluation_report_{pd.Timestamp.now().strftime('%Y-%m-%d')}.csv"
-    export_path = os.path.join(C.CONTENT_PATH/C.EVALUATION_PATH, report_name)
+    export_path = os.path.join(C.EVALUATION_PATH, report_name)
     report.to_csv(export_path, index=False)
     print("The data has been exported to the evaluation report")
     return report
\ No newline at end of file