Title: [204408] trunk/Tools
Revision
204408
Author
[email protected]
Date
2016-08-12 02:11:09 -0700 (Fri, 12 Aug 2016)

Log Message

Add missing return statement in convertFast function added in r204376.

Unreviewed.

* Scripts/webkitpy/common/system/path.py:
(_CygPath.convertFast):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (204407 => 204408)


--- trunk/Tools/ChangeLog	2016-08-12 05:52:47 UTC (rev 204407)
+++ trunk/Tools/ChangeLog	2016-08-12 09:11:09 UTC (rev 204408)
@@ -1,3 +1,12 @@
+2016-08-12  Per Arne Vollan  <[email protected]>
+
+        Add missing return statement in convertFast function added in r204376.
+
+        Unreviewed.
+
+        * Scripts/webkitpy/common/system/path.py:
+        (_CygPath.convertFast):
+
 2016-08-11  Brady Eidson  <[email protected]>
 
         Add WK2 ExperimentalFeature support to MiniBrowser.

Modified: trunk/Tools/Scripts/webkitpy/common/system/path.py (204407 => 204408)


--- trunk/Tools/Scripts/webkitpy/common/system/path.py	2016-08-12 05:52:47 UTC (rev 204407)
+++ trunk/Tools/Scripts/webkitpy/common/system/path.py	2016-08-12 09:11:09 UTC (rev 204408)
@@ -137,8 +137,9 @@
             path = re.sub('/', r'\\', path)
             return path
         else:
-            self.convert(path)
+            return self.convert(path)
 
+
 def _escape(path):
     """Handle any characters in the path that should be escaped."""
     # FIXME: web browsers don't appear to blindly quote every character
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to