Explorar el Código

fix: correctly order args and kwargs

(cherry picked from commit c76277f1bf)
version-14
Ankush Menat hace 2 años
committed by Mergify
padre
commit
d7ac98bb6f
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      frappe/utils/__init__.py

+ 1
- 1
frappe/utils/__init__.py Ver fichero

@@ -459,7 +459,7 @@ def get_site_base_path():


def get_site_path(*path):
return get_path(base=get_site_base_path(), *path)
return get_path(*path, base=get_site_base_path())


def get_files_path(*path, **kwargs):


Cargando…
Cancelar
Guardar