Title: [93416] trunk/Tools
Revision
93416
Author
commit-qu...@webkit.org
Date
2011-08-19 09:06:49 -0700 (Fri, 19 Aug 2011)

Log Message

Fix _path_to_apache() error reporting
https://bugs.webkit.org/show_bug.cgi?id=66486

Patch by Tom Zakrajsek <t...@codeaurora.org> on 2011-08-19
Reviewed by Ryosuke Niwa.

* Scripts/webkitpy/layout_tests/port/webkit.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (93415 => 93416)


--- trunk/Tools/ChangeLog	2011-08-19 15:50:19 UTC (rev 93415)
+++ trunk/Tools/ChangeLog	2011-08-19 16:06:49 UTC (rev 93416)
@@ -1,3 +1,12 @@
+2011-08-19  Tom Zakrajsek  <t...@codeaurora.org>
+
+        Fix _path_to_apache() error reporting
+        https://bugs.webkit.org/show_bug.cgi?id=66486
+
+        Reviewed by Ryosuke Niwa.
+
+        * Scripts/webkitpy/layout_tests/port/webkit.py:
+
 2011-08-19  Adam Roben  <aro...@apple.com>
 
         Windows build fix after r93404

Modified: trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit.py (93415 => 93416)


--- trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit.py	2011-08-19 15:50:19 UTC (rev 93415)
+++ trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit.py	2011-08-19 16:06:49 UTC (rev 93416)
@@ -384,7 +384,7 @@
         for path in ["/usr/sbin/httpd", "/usr/sbin/apache2"]:
             if self._filesystem.exists(path):
                 return path
-            _log.error("Could not find apache. Not installed or unknown path.")
+        _log.error("Could not find apache. Not installed or unknown path.")
         return None
 
     # FIXME: This belongs on some platform abstraction instead of Port.
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to