From 8afd189d3622aadc561e5dc0e4118f66024fe1f2 Mon Sep 17 00:00:00 2001 From: Isis Lovecruft Date: Thu, 23 May 2013 07:06:11 +0000 Subject: [PATCH] =?UTF-8?q?InheritablePropery=E2=86=92=5Futil.InheritableP?= =?UTF-8?q?roperty?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/gnupg.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/gnupg.py b/src/gnupg.py index 2795087..d34179a 100644 --- a/src/gnupg.py +++ b/src/gnupg.py @@ -101,7 +101,6 @@ import threading from _parsers import _fix_unsafe, _sanitise, _is_allowed, _sanitise_list from _parsers import _check_preferences -from _util import InheritableProperty from _util import _conf, _is_list_or_tuple, _is_stream from _util import _make_binary_stream from _util import log @@ -378,7 +377,7 @@ class GPGBase(object): log.info("Setting homedir to '%s'" % hd) self._homedir = hd - homedir = InheritableProperty(_homedir_getter, _homedir_setter) + homedir = _util.InheritableProperty(_homedir_getter, _homedir_setter) class GPG(GPGBase):