InheritablePropery→_util.InheritableProperty

testing/mmn/mktime_takes_localtime_not_gmtime
Isis Lovecruft 2013-05-23 07:06:11 +00:00
parent c7a4845ce4
commit 8afd189d36
No known key found for this signature in database
GPG Key ID: A3ADB67A2CDB8B35
1 changed files with 1 additions and 2 deletions

View File

@ -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):