From 071ba05534f1e5f3eee3435214caa2642e3e2c23 Mon Sep 17 00:00:00 2001 From: Jeremy Heiner Date: Sat, 12 Oct 2013 12:44:32 -0400 Subject: Use Python's "0o#" octal literal instead of deprecated "0#". Reported as a compatibility issue by 2to3. Signed-off-by: Jeremy Heiner Signed-off-by: Allan McRae --- test/pacman/util.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/pacman/util.py') diff --git a/test/pacman/util.py b/test/pacman/util.py index 14035d76..c1ab390e 100644 --- a/test/pacman/util.py +++ b/test/pacman/util.py @@ -84,12 +84,12 @@ def mkfile(base, name, data=""): path = os.path.join(base, filename) if info["isdir"]: if not os.path.isdir(path): - os.makedirs(path, 0755) + os.makedirs(path, 0o755) return dir_path = os.path.dirname(path) if dir_path and not os.path.isdir(dir_path): - os.makedirs(dir_path, 0755) + os.makedirs(dir_path, 0o755) if info["islink"]: os.symlink(info["link"], path) @@ -182,6 +182,6 @@ def mkdir(path): return elif os.path.isfile(path): raise OSError("'%s' already exists and is not a directory" % path) - os.makedirs(path, 0755) + os.makedirs(path, 0o755) # vim: set ts=4 sw=4 et: -- cgit v1.2.3-70-g09d2