removed bad argument in storagecounter
This commit is contained in:
parent
a6719abed7
commit
1217e4a83c
@ -34,7 +34,7 @@ class StorageCounter:
|
|||||||
def _update(self, data):
|
def _update(self, data):
|
||||||
with open(self.dataFile, 'w') as dataFile:
|
with open(self.dataFile, 'w') as dataFile:
|
||||||
dataFile.write(str(data))
|
dataFile.write(str(data))
|
||||||
def getAmount(self, data):
|
def getAmount(self):
|
||||||
'''Return how much disk space we're using (according to record)'''
|
'''Return how much disk space we're using (according to record)'''
|
||||||
retData = 0
|
retData = 0
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user