Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Labels
Merge Requests
7
Merge Requests
7
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
Jérome Perrin
erp5
Commits
e355f911
Commit
e355f911
authored
Mar 17, 2023
by
Kazuhiko Shiozaki
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
testXHTML: py3.
parent
b84cddc6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
product/ERP5/tests/utils.py
product/ERP5/tests/utils.py
+6
-6
No files found.
product/ERP5/tests/utils.py
View file @
e355f911
...
@@ -165,14 +165,14 @@ class BusinessTemplateInfoDir(BusinessTemplateInfoBase):
...
@@ -165,14 +165,14 @@ class BusinessTemplateInfoDir(BusinessTemplateInfoBase):
def
findFileInfosByName
(
self
,
startswith
=
''
,
endswith
=
''
):
def
findFileInfosByName
(
self
,
startswith
=
''
,
endswith
=
''
):
allfiles
=
[]
allfiles
=
[]
def
visit
(
arg
,
dirname
,
names
):
for
root
,
dir_list
,
file_list
in
os
.
walk
(
self
.
target
):
if
'.svn'
in
dirname
:
# We can drop this block as we no longer use Subversion.
return
if
'.svn'
in
root
.
split
(
os
.
path
.
sep
):
for
i
in
names
:
continue
path
=
os
.
path
.
join
(
self
.
target
,
dirname
,
i
)
for
file_
in
file_list
:
path
=
os
.
path
.
join
(
self
.
target
,
root
,
file_
)
if
os
.
path
.
isfile
(
path
):
if
os
.
path
.
isfile
(
path
):
allfiles
.
append
(
path
)
allfiles
.
append
(
path
)
os
.
path
.
walk
(
self
.
target
,
visit
,
None
)
for
i
in
allfiles
:
for
i
in
allfiles
:
if
i
.
startswith
(
startswith
)
and
i
.
endswith
(
endswith
):
if
i
.
startswith
(
startswith
)
and
i
.
endswith
(
endswith
):
yield
i
yield
i
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment