diff --git a/frappe/utils/help.py b/frappe/utils/help.py
index 5549b17d19..c76e977dd8 100644
--- a/frappe/utils/help.py
+++ b/frappe/utils/help.py
@@ -245,7 +245,7 @@ class HelpDatabase(object):
links_html = "
"
for line in files:
- fpath = os.path.join(os.path.dirname(frappe.safe_decode(original_path)), frappe.safe_decode(line))
+ fpath = os.path.join(os.path.dirname(original_path), line)
title = self.db.sql('select title from help where path like %s',
os.path.join(fpath, 'index') + '%')