removed bad argument in storagecounter

This commit is contained in:
Kevin Froman 2018-08-23 09:45:51 -05:00
parent a6719abed7
commit 1217e4a83c
1 changed files with 1 additions and 1 deletions

View File

@ -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: