diff options
author | Parker Berberian <pberberian@iol.unh.edu> | 2019-01-30 13:40:15 -0500 |
---|---|---|
committer | Parker Berberian <pberberian@iol.unh.edu> | 2019-02-12 13:40:30 -0500 |
commit | 37620c753acf540e3c16364419617ebeb0388c5b (patch) | |
tree | f624c3bda350729b83b23dd79c9d077c378f5ea3 /src/dashboard/populate_db_iol.py | |
parent | 33ce5acd438fbb81522fffeb81e2d1a58861b57f (diff) |
Fixed all Flake8 errors
Change-Id: I1186429df8989461e2384f1f3e533c55cebfb1b4
Signed-off-by: Parker Berberian <pberberian@iol.unh.edu>
Diffstat (limited to 'src/dashboard/populate_db_iol.py')
-rw-r--r-- | src/dashboard/populate_db_iol.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dashboard/populate_db_iol.py b/src/dashboard/populate_db_iol.py index 4368520..916dd97 100644 --- a/src/dashboard/populate_db_iol.py +++ b/src/dashboard/populate_db_iol.py @@ -307,7 +307,7 @@ class Populator: size = 0 try: size = int(disk_data['size'].split('.')[0]) - except: + except Exception: size = int(disk_data['size'].split('.')[0][:-1]) DiskProfile.objects.create( size=size, |