Skip to content
Snippets Groups Projects
Verified Commit 8e17a3f9 authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

Improve readability

parent 0e4631ef
No related branches found
No related tags found
No related merge requests found
......@@ -191,10 +191,10 @@ class SvnRepo():
"""
for paths in changed_paths:
path = os.path.join(rootpath,
paths.path.lstrip('/').encode('utf-8'))
path = paths.path.lstrip('/').encode('utf-8')
fullpath = os.path.join(rootpath, path)
yield {
'path': path,
'path': fullpath,
'action': paths.action # A(dd), M(odified), D(eleted)
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment