From efd8b03ccfc5ba25c383eacafa948aa0aa5feddf Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 15 Dec 2010 14:55:30 -0500 Subject: 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 --- ipapython/ipautil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ipapython') diff --git a/ipapython/ipautil.py b/ipapython/ipautil.py index 06495f4ee..77c838e80 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): -- cgit