From 1217e4a83c36d80975e83535481b67b99b972415 Mon Sep 17 00:00:00 2001 From: Kevin Froman Date: Thu, 23 Aug 2018 09:45:51 -0500 Subject: [PATCH] removed bad argument in storagecounter --- onionr/storagecounter.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onionr/storagecounter.py b/onionr/storagecounter.py index 50456a24..b2ccd0d1 100644 --- a/onionr/storagecounter.py +++ b/onionr/storagecounter.py @@ -34,7 +34,7 @@ class StorageCounter: def _update(self, data): with open(self.dataFile, 'w') as dataFile: dataFile.write(str(data)) - def getAmount(self, data): + def getAmount(self): '''Return how much disk space we're using (according to record)''' retData = 0 try: