Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 7284C1047D for ; Wed, 18 Dec 2013 20:55:55 +0000 (UTC) Received: (qmail 17178 invoked by uid 500); 18 Dec 2013 20:55:55 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 17152 invoked by uid 500); 18 Dec 2013 20:55:55 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 17145 invoked by uid 99); 18 Dec 2013 20:55:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Dec 2013 20:55:55 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Dec 2013 20:55:54 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 50746238890B; Wed, 18 Dec 2013 20:55:34 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1552093 - /subversion/trunk/subversion/tests/cmdline/svntest/sandbox.py Date: Wed, 18 Dec 2013 20:55:34 -0000 To: commits@subversion.apache.org From: rhuijben@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20131218205534.50746238890B@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: rhuijben Date: Wed Dec 18 20:55:33 2013 New Revision: 1552093 URL: http://svn.apache.org/r1552093 Log: * subversion/tests/cmdline/svntest/sandbox.py (_ensure_authz): Following up on r1552091, fix stupid typo. Modified: subversion/trunk/subversion/tests/cmdline/svntest/sandbox.py Modified: subversion/trunk/subversion/tests/cmdline/svntest/sandbox.py URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/tests/cmdline/svntest/sandbox.py?rev=1552093&r1=1552092&r2=1552093&view=diff ============================================================================== --- subversion/trunk/subversion/tests/cmdline/svntest/sandbox.py (original) +++ subversion/trunk/subversion/tests/cmdline/svntest/sandbox.py Wed Dec 18 20:55:33 2013 @@ -101,7 +101,7 @@ class Sandbox: if not os.path.exists(svntest.main.work_dir): os.makedirs(svntest.main.work_dir) - def _ensure_authz(sef): + def _ensure_authz(self): "make sure the repository is accessible" if self.repo_url.startswith("http"):