From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B4F77138CD0 for ; Wed, 1 Jul 2015 17:27:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1647BE087F; Wed, 1 Jul 2015 17:27:25 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BDCB8E087F for ; Wed, 1 Jul 2015 17:27:24 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id F338A34086E for ; Wed, 1 Jul 2015 17:27:23 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7650739 for ; Wed, 1 Jul 2015 17:27:21 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1435771779.0a3e35dd7541373d888528ace693408463831d15.blueness@gentoo> Subject: [gentoo-commits] proj/grss:master commit in: grs/ X-VCS-Repository: proj/grss X-VCS-Files: grs/MountDirectories.py X-VCS-Directories: grs/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 0a3e35dd7541373d888528ace693408463831d15 X-VCS-Branch: master Date: Wed, 1 Jul 2015 17:27:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 657eeb27-b039-40a8-9314-d29d73cb9aba X-Archives-Hash: 92761368669e73387ac14f2886f18558 commit: 0a3e35dd7541373d888528ace693408463831d15 Author: Anthony G. Basile gentoo org> AuthorDate: Wed Jul 1 17:29:39 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed Jul 1 17:29:39 2015 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=0a3e35dd grs/MountDirectories.py: fix minor typo. grs/MountDirectories.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grs/MountDirectories.py b/grs/MountDirectories.py index 16edc32..737daf0 100644 --- a/grs/MountDirectories.py +++ b/grs/MountDirectories.py @@ -80,7 +80,7 @@ class MountDirectories(): source_directory = mount target_directory = mount elif isinstance(mount, list): - # Here source_directory is assumet to be an abspath + # Here source_directory is assumed to be an abspath # and we create it if it doesn't exist source_directory = mount[0] os.makedirs(source_directory, mode=0o755, exist_ok=True)