diff options
Diffstat (limited to 'WebKitTools/Scripts/webkitpy/style_references.py')
-rw-r--r-- | WebKitTools/Scripts/webkitpy/style_references.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/WebKitTools/Scripts/webkitpy/style_references.py b/WebKitTools/Scripts/webkitpy/style_references.py index bab30ca..a42b69d 100644 --- a/WebKitTools/Scripts/webkitpy/style_references.py +++ b/WebKitTools/Scripts/webkitpy/style_references.py @@ -67,6 +67,6 @@ class WebKitCheckout(object): """Return the checkout root as an absolute path.""" return self._scm.checkout_root - def create_patch(self, git_commit, squash): - return self._scm.create_patch(git_commit, squash) + def create_patch(self, git_commit): + return self._scm.create_patch(git_commit) |