Skip to content
Snippets Groups Projects
Commit 413ec912 authored by Florian Spreckelsen's avatar Florian Spreckelsen
Browse files

DOC: Use correct backticks

parent f12672ca
No related branches found
No related tags found
1 merge request!150DOC: explain run_server_side_script
Pipeline #54688 passed with warnings
...@@ -102,16 +102,16 @@ def run_server_side_script(call, *args, files=None, **kwargs): ...@@ -102,16 +102,16 @@ def run_server_side_script(call, *args, files=None, **kwargs):
Parameters Parameters
---------- ----------
call : str call : str
name of the script to be called, potentially with path prefix (e.g. `management/update.py`) name of the script to be called, potentially with path prefix (e.g. ``management/update.py``)
*args : list(str) *args : list(str)
list of positional arguments list of positional arguments
files : dict files : dict
dictionary with where keys are the argument names with prefix (e.g. `-p1` or `-Ofile`) and dictionary with where keys are the argument names with prefix (e.g. ``-p1`` or ``-Ofile``) and
the values are the paths to the files to be uploaded. Note, that only the base name will be the values are the paths to the files to be uploaded. Note, that only the base name will be
used when uploaded. Files will be placed in the `.upload_files` folder. Thus, the script used when uploaded. Files will be placed in the ``.upload_files`` folder. Thus, the script
will be called with the argument `<key>=.upload_files/<basename>`. will be called with the argument ``<key>=.upload_files/<basename>``.
**kwargs : dict **kwargs : dict
kwargs will be passed to `_make_request` kwargs will be passed to ``_make_request``
Return Return
------ ------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment