Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/
Date: Tue, 07 Jun 2022 06:55:28
Message-Id: 1654584830.b9240c4023c59ec193bdb68ff8207a03100be01c.mgorny@gentoo
1 commit: b9240c4023c59ec193bdb68ff8207a03100be01c
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 1 07:43:30 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Jun 7 06:53:50 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9240c40
7
8 python-utils-r1.eclass: Fix typo in python_moduleinto doc
9
10 Fix python_moduleinto doc to mention python_domodule rather than
11 python_doscript (copy-paste error, probably).
12
13 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
14
15 eclass/python-utils-r1.eclass | 8 ++++----
16 1 file changed, 4 insertions(+), 4 deletions(-)
17
18 diff --git a/eclass/python-utils-r1.eclass b/eclass/python-utils-r1.eclass
19 index 9eb068d3b13f..b3c249dfa694 100644
20 --- a/eclass/python-utils-r1.eclass
21 +++ b/eclass/python-utils-r1.eclass
22 @@ -805,10 +805,10 @@ python_newscript() {
23 # site-packages directory.
24 #
25 # In the relative case, the exact path is determined directly
26 -# by each python_doscript/python_newscript function. Therefore,
27 -# python_moduleinto can be safely called before establishing the Python
28 -# interpreter and/or a single call can be used to set the path correctly
29 -# for multiple implementations, as can be seen in the following example.
30 +# by each python_domodule invocation. Therefore, python_moduleinto
31 +# can be safely called before establishing the Python interpreter and/or
32 +# a single call can be used to set the path correctly for multiple
33 +# implementations, as can be seen in the following example.
34 #
35 # Example:
36 # @CODE