Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: build.py

Issue 29727637: Issue 6503 - Fix builds on Windows (Closed)
Patch Set: Created March 20, 2018, 1:09 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build.py
===================================================================
--- a/build.py
+++ b/build.py
@@ -39,7 +39,7 @@
def func_wrapper(*args, **kwargs):
return func(*args, **kwargs)
- short_desc, long_desc = func.__doc__.split(os.linesep + os.linesep, 1)
+ short_desc, long_desc = func.__doc__.split('\n\n', 1)
ALL_COMMANDS.append({
'name': func.__name__,
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld