Skip to content

Commit 838037f

Browse files
committed
Fix old reference in migrating.rst
1 parent f479d71 commit 838037f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/user_guide/migrating.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ For example, if test execution isn't performed in the standard way (e.g., :code:
7272
# ATTENTION:
7373
# In cases where it is reasonable to use "internal" functions, please do those imports
7474
# within the function to keep them isolated and simplify future removal or replacement.
75-
from exasol.toolbox.nox._shared import python_files
75+
from exasol.toolbox.nox._shared import get_filtered_python_files
7676
77-
py_files = [f"{file}" for file in python_files(PROJECT_CONFIG.root)]
77+
py_files = get_filtered_python_files(PROJECT_CONFIG.root)
7878
print("The original 'project:fix' task has been taken hostage by this overwrite")
7979
print("Files:\n{files}".format(files="\n".join(py_files))
8080

0 commit comments

Comments
 (0)