summaryrefslogtreecommitdiff
path: root/qpid/tools/src/py/qls/efp.py
diff options
context:
space:
mode:
Diffstat (limited to 'qpid/tools/src/py/qls/efp.py')
-rw-r--r--qpid/tools/src/py/qls/efp.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/qpid/tools/src/py/qls/efp.py b/qpid/tools/src/py/qls/efp.py
index 3ad8104faa..abf289dc12 100644
--- a/qpid/tools/src/py/qls/efp.py
+++ b/qpid/tools/src/py/qls/efp.py
@@ -26,10 +26,11 @@ class EfpManager(object):
Top level class to analyze the Qpid Linear Store (QLS) directory for the partitions that make up the
Empty File Pool (EFP).
"""
- def __init__(self, directory):
+ def __init__(self, directory, args):
if not os.path.exists(directory):
raise qls.err.InvalidQlsDirectoryNameError(directory)
self.directory = directory
+ self.args = args
self.partitions = []
def report(self):
print 'Found', len(self.partitions), 'partition(s).'