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
139
Merge Requests
139
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Jobs
Commits
Open sidebar
nexedi
erp5
Commits
f3d380e6
Commit
f3d380e6
authored
Jan 22, 2024
by
Jérome Perrin
Committed by
Arnaud Fontaine
Jul 05, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
forge: python3 compatibility for git tab
parent
3da96bd5
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 @
f3d380e6
...
...
@@ -211,7 +211,7 @@ class Git(WorkingCopy):
diff_dict
=
{}
if
out
:
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_dict
[
path
]
=
stat
# Emulate svn output for compatibility with erp5.component.module.DiffUtils
...
...
@@ -230,7 +230,7 @@ class Git(WorkingCopy):
path_dict
=
dict
.
fromkeys
(
self
.
git
(
'ls-files'
).
splitlines
(),
''
)
path_dict
.
update
(
self
.
_patch_with_raw
()[
0
])
node_dict
=
{}
path_list
=
path_dict
.
keys
(
)
path_list
=
list
(
path_dict
.
keys
()
)
for
path
in
path_list
:
status
=
path_dict
[
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