fix: Minor typo
diff --git a/erpnext/www/lms.py b/erpnext/www/lms.py
index 4416244..85a4c58 100644
--- a/erpnext/www/lms.py
+++ b/erpnext/www/lms.py
@@ -283,7 +283,7 @@
 @frappe.whitelist(allow_guest=True)
 def get_course_details(course_name):
 	try:
-		course = sfrappe.get_doc('Course', course_name)
+		course = frappe.get_doc('Course', course_name)
 		return course
 	except:
 		return None