Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/grss:master commit in: grs/
Date: Wed, 01 Jul 2015 17:27:30
Message-Id: 1435771779.0a3e35dd7541373d888528ace693408463831d15.blueness@gentoo
1 commit: 0a3e35dd7541373d888528ace693408463831d15
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 1 17:29:39 2015 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 1 17:29:39 2015 +0000
6 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=0a3e35dd
7
8 grs/MountDirectories.py: fix minor typo.
9
10 grs/MountDirectories.py | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/grs/MountDirectories.py b/grs/MountDirectories.py
14 index 16edc32..737daf0 100644
15 --- a/grs/MountDirectories.py
16 +++ b/grs/MountDirectories.py
17 @@ -80,7 +80,7 @@ class MountDirectories():
18 source_directory = mount
19 target_directory = mount
20 elif isinstance(mount, list):
21 - # Here source_directory is assumet to be an abspath
22 + # Here source_directory is assumed to be an abspath
23 # and we create it if it doesn't exist
24 source_directory = mount[0]
25 os.makedirs(source_directory, mode=0o755, exist_ok=True)