diff options
author | Simo Sorce <ssorce@redhat.com> | 2010-12-15 14:55:30 -0500 |
---|---|---|
committer | Simo Sorce <ssorce@redhat.com> | 2010-12-21 17:28:13 -0500 |
commit | efd8b03ccfc5ba25c383eacafa948aa0aa5feddf (patch) | |
tree | 2922b7d3369b01aef11d7cebf187b335fcf374a2 /ipapython | |
parent | 6bbd4eed9f4b1dcb3cb2fdc136575671832fca5f (diff) | |
download | freeipa-efd8b03ccfc5ba25c383eacafa948aa0aa5feddf.tar.gz freeipa-efd8b03ccfc5ba25c383eacafa948aa0aa5feddf.tar.xz freeipa-efd8b03ccfc5ba25c383eacafa948aa0aa5feddf.zip |
Make ipa-replica-manage list return all known masters
if ipa-replica-manage list is given a master name as argument then the tool
has the old behavior of listing that specific master replication agreements
Fixes: https://fedorahosted.org/freeipa/ticket/625
Diffstat (limited to 'ipapython')
-rw-r--r-- | ipapython/ipautil.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipapython/ipautil.py b/ipapython/ipautil.py index 06495f4e..77c838e8 100644 --- a/ipapython/ipautil.py +++ b/ipapython/ipautil.py @@ -346,7 +346,7 @@ class GeneralizedTimeZone(datetime.tzinfo): if self.houroffset < 0: self.minoffset *= -1 - def utcoffset(self): + def utcoffset(self, dt): return datetime.timedelta(hours=self.houroffset, minutes=self.minoffset) def dst(self): |