fix: spaces to tabs
diff --git a/erpnext/patches/v13_0/rename_issue_status_hold_to_on_hold.py b/erpnext/patches/v13_0/rename_issue_status_hold_to_on_hold.py
index b466678..48325fc 100644
--- a/erpnext/patches/v13_0/rename_issue_status_hold_to_on_hold.py
+++ b/erpnext/patches/v13_0/rename_issue_status_hold_to_on_hold.py
@@ -6,15 +6,15 @@
 
 def execute():
 	if frappe.db.exists('DocType', 'Issue'):
-        frappe.reload_doc("support", "doctype", "issue")
-	    rename_status()
+		frappe.reload_doc("support", "doctype", "issue")
+		rename_status()
 
 def rename_status():
 	frappe.db.sql("""
 		UPDATE
-            `tabIssue`
+			`tabIssue`
 		SET
-            status = 'On Hold'
-        WHERE
-            status = 'Hold'
+			status = 'On Hold'
+		WHERE
+			status = 'Hold'
 	""")
\ No newline at end of file