Remove unused argument

This commit is contained in:
Alexander Kukushkin
2016-05-13 16:12:46 +02:00
parent d422e16aad
commit 98c505a16b
+1 -1
View File
@@ -38,7 +38,7 @@ class Patroni(object):
return {tag: value for tag, value in config.get('tags', {}).items()
if tag not in ('clonefrom', 'nofailover', 'noloadbalance') or value}
def _load_config(self, fail=True):
def _load_config(self):
with open(self._config_file) as f:
return yaml.load(f)