Index: ppapi/generators/idl_c_proto.py |
diff --git a/ppapi/generators/idl_c_proto.py b/ppapi/generators/idl_c_proto.py |
index d7aa0e72d6927c803bcf73f2376a75f89ca05d65..a6179a8f4b677fde965621e9721bb05a767b8435 100755 |
--- a/ppapi/generators/idl_c_proto.py |
+++ b/ppapi/generators/idl_c_proto.py |
@@ -642,7 +642,7 @@ class CGen(object): |
# Add indentation |
line = tab + line |
space_break = line.rfind(' ', 0, 80) |
- if len(line) <= 80 or 'http' in line: |
+ if len(line) <= 80 or 'http://' in line: |
# Ignore normal line and URLs permitted by the style guide. |
lines.append(line.rstrip()) |
elif not '(' in line and space_break >= 0: |