From 7f2b1425bb6df39bc8471de00848c36f641047d0 Mon Sep 17 00:00:00 2001 From: Scott Baker Date: Mon, 26 Jan 2009 20:08:21 +0000 Subject: [PATCH] change trustedroots constructor to take a full pathname --- util/trustedroot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/trustedroot.py b/util/trustedroot.py index b531172a..e957655d 100644 --- a/util/trustedroot.py +++ b/util/trustedroot.py @@ -3,8 +3,8 @@ import os from gid import * class TrustedRootList(): - def __init__(self, basedir="."): - self.basedir = os.path.join(basedir, "trusted_roots") + def __init__(self, dir="./trusted_roots"): + self.basedir = dir # create the directory to hold the files try: -- 2.43.0