Index: tools/push-to-trunk/common_includes.py |
diff --git a/tools/push-to-trunk/common_includes.py b/tools/push-to-trunk/common_includes.py |
index 6dad59c6cffafa9d47e13f3c6c76419c42625d31..39b68913426e3f845953434134339d6bd2e40d7c 100644 |
--- a/tools/push-to-trunk/common_includes.py |
+++ b/tools/push-to-trunk/common_includes.py |
@@ -84,14 +84,6 @@ def Fill80(line): |
subsequent_indent=" ") |
-def GetLastChangeLogEntries(change_log_file): |
- result = [] |
- for line in LinesInFile(change_log_file): |
- if re.search(r"^\d{4}-\d{2}-\d{2}:", line) and result: break |
- result.append(line) |
- return "".join(result) |
- |
- |
def MakeComment(text): |
return MSub(r"^( ?)", "#", text) |