Procházet zdrojové kódy

[Fix] File not found error

version-14
Rohit Waghchaure před 6 roky
rodič
revize
0307b3da59
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. +1
    -1
      frappe/utils/csvutils.py

+ 1
- 1
frappe/utils/csvutils.py Zobrazit soubor

@@ -30,7 +30,7 @@ def read_csv_content_from_attached_file(doc):
raise Exception

try:
_file = frappe.get_doc("File", {"file_name": fileid})
_file = frappe.get_doc("File", fileid)
fcontent = _file.get_content()
return read_csv_content(fcontent, frappe.form_dict.get('ignore_encoding_errors'))
except Exception:


Načítá se…
Zrušit
Uložit