##// END OF EJS Templates
pr: Use unicode object when generating the pull request title
Martin Bornhold -
r842:f8830f3e default
parent child Browse files
Show More
@@ -1018,7 +1018,7 b' class PullRequestModel(BaseModel):'
1018 }
1018 }
1019
1019
1020 def generate_pullrequest_title(self, source, source_ref, target):
1020 def generate_pullrequest_title(self, source, source_ref, target):
1021 return '{source}#{at_ref} to {target}'.format(
1021 return u'{source}#{at_ref} to {target}'.format(
1022 source=source,
1022 source=source,
1023 at_ref=source_ref,
1023 at_ref=source_ref,
1024 target=target,
1024 target=target,
General Comments 0
You need to be logged in to leave comments. Login now