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
a51e0bf9
Commit
a51e0bf9
authored
Jan 22, 2024
by
Jérome Perrin
Committed by
Arnaud Fontaine
Jul 15, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
forge: python3 compatibility for git tab
parent
1a62178a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
bt5/erp5_forge/ModuleComponentTemplateItem/portal_components/module.erp5.Git.py
...omponentTemplateItem/portal_components/module.erp5.Git.py
+2
-2
No files found.
bt5/erp5_forge/ModuleComponentTemplateItem/portal_components/module.erp5.Git.py
View file @
a51e0bf9
...
@@ -211,7 +211,7 @@ class Git(WorkingCopy):
...
@@ -211,7 +211,7 @@ class Git(WorkingCopy):
diff_dict
=
{}
diff_dict
=
{}
if
out
:
if
out
:
out
=
iter
(
out
.
split
(
'
\
n
diff --git '
))
out
=
iter
(
out
.
split
(
'
\
n
diff --git '
))
for
stat
in
out
.
next
(
).
splitlines
():
for
stat
in
next
(
out
).
splitlines
():
stat
,
path
=
stat
.
split
()[
4
:]
stat
,
path
=
stat
.
split
()[
4
:]
stat_dict
[
path
]
=
stat
stat_dict
[
path
]
=
stat
# Emulate svn output for compatibility with erp5.component.module.DiffUtils
# Emulate svn output for compatibility with erp5.component.module.DiffUtils
...
@@ -230,7 +230,7 @@ class Git(WorkingCopy):
...
@@ -230,7 +230,7 @@ class Git(WorkingCopy):
path_dict
=
dict
.
fromkeys
(
self
.
git
(
'ls-files'
).
splitlines
(),
''
)
path_dict
=
dict
.
fromkeys
(
self
.
git
(
'ls-files'
).
splitlines
(),
''
)
path_dict
.
update
(
self
.
_patch_with_raw
()[
0
])
path_dict
.
update
(
self
.
_patch_with_raw
()[
0
])
node_dict
=
{}
node_dict
=
{}
path_list
=
path_dict
.
keys
(
)
path_list
=
list
(
path_dict
.
keys
()
)
for
path
in
path_list
:
for
path
in
path_list
:
status
=
path_dict
[
path
]
status
=
path_dict
[
path
]
parent
=
os
.
path
.
dirname
(
path
)
parent
=
os
.
path
.
dirname
(
path
)
...
...
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