From 03e12282df9aa1e1fb05a8b90f1cfc2e08764cec Mon Sep 17 00:00:00 2001 From: Simon Hausmann Date: Thu, 9 Feb 2012 14:16:12 +0100 Subject: Imported WebKit commit e09a82039aa4273ab318b71122e92d8e5f233525 (http://svn.webkit.org/repository/webkit/trunk@107223) --- Tools/Scripts/webkitpy/common/checkout/scm/svn.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'Tools/Scripts/webkitpy/common/checkout/scm/svn.py') diff --git a/Tools/Scripts/webkitpy/common/checkout/scm/svn.py b/Tools/Scripts/webkitpy/common/checkout/scm/svn.py index 3f583a7d3..edeee30ae 100644 --- a/Tools/Scripts/webkitpy/common/checkout/scm/svn.py +++ b/Tools/Scripts/webkitpy/common/checkout/scm/svn.py @@ -36,7 +36,6 @@ import sys from webkitpy.common.memoized import memoized from webkitpy.common.system.deprecated_logging import log from webkitpy.common.system.executive import Executive, ScriptError -from webkitpy.common.system import ospath from .scm import AuthenticationError, SCM, commit_error_handler @@ -237,8 +236,8 @@ class SVN(SCM, SVNRepository): def display_name(self): return "svn" - def head_svn_revision(self): - return self.value_from_svn_info(self.checkout_root, 'Revision') + def svn_revision(self, path): + return self.value_from_svn_info(path, 'Revision') # FIXME: This method should be on Checkout. def create_patch(self, git_commit=None, changed_files=None): -- cgit v1.2.1