Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
860cc8f2
Commit
860cc8f2
authored
Apr 14, 2015
by
Will Daly
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #7669 from edx/will/fix-release-script-escaping
Escape curly quotes in release page table
parents
d3bb7225
c81bac95
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
+1
-1
scripts/release.py
+1
-1
No files found.
scripts/release.py
View file @
860cc8f2
...
@@ -405,7 +405,7 @@ def generate_pr_table(start_ref, end_ref):
...
@@ -405,7 +405,7 @@ def generate_pr_table(start_ref, end_ref):
rows
.
append
(
"| {merged_by} | {author} | {title} | {pull_request} | {jira} | {verified} |"
.
format
(
rows
.
append
(
"| {merged_by} | {author} | {title} | {pull_request} | {jira} | {verified} |"
.
format
(
merged_by
=
email
if
i
==
0
else
""
,
merged_by
=
email
if
i
==
0
else
""
,
author
=
user_link
.
format
(
user
=
author
)
if
author
else
""
,
author
=
user_link
.
format
(
user
=
author
)
if
author
else
""
,
title
=
title
.
replace
(
"|"
,
"
\
|"
),
title
=
title
.
replace
(
"|"
,
"
\
|"
)
.
replace
(
'{'
,
'
\
{'
)
.
replace
(
'}'
,
'
\
}'
)
,
pull_request
=
pr_link
.
format
(
num
=
pull_request
),
pull_request
=
pr_link
.
format
(
num
=
pull_request
),
jira
=
", "
.
join
(
parse_ticket_references
(
body
)),
jira
=
", "
.
join
(
parse_ticket_references
(
body
)),
verified
=
""
,
verified
=
""
,
...
...
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