Remove accidental debug print

Change-Id: I0acd19c539e0d06be8081f46beb88209a8638640
This commit is contained in:
Ian Wienand 2018-06-12 14:45:00 +10:00
parent 1b0b447d51
commit 494a12801b
1 changed files with 0 additions and 1 deletions

View File

@ -103,7 +103,6 @@ class FileServerStats(object):
used = int(m.group('used'))
quota = int(q.group('quota'))
percent_used = round(float(used) / float(quota) * 100, 2)
print(chunk)
c = re.search(r'Creation\s+%s' % self.AFS_DATE_REGEX, chunk)
creation = datetime.strptime(c.group('date'),
self.AFS_DATE_STRPTIME)