diff options
author | Jose M. Guisado <jguisado@soleta.eu> | 2021-02-16 13:25:10 +0000 |
---|---|---|
committer | Jose M. Guisado <jguisado@soleta.eu> | 2021-02-16 13:25:10 +0000 |
commit | 2ec14a006134cd633e78b8ae96f0681d50a06225 (patch) | |
tree | 6476ec0d1be84c3fc22272a9d65d4384464bf735 /ogcp | |
parent | 55d923431d45e1388227d45ecd11c01ab8a7a824 (diff) |
Add FAT32 to FS_CODES dict
An error was produced when rendering the setup form of a computer
with any FAT32 partition. It was missing from the mapping of codes
received in a response to a given filesystem.
Diffstat (limited to 'ogcp')
-rw-r--r-- | ogcp/views.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ogcp/views.py b/ogcp/views.py index d8cc9c4..e752ff3 100644 --- a/ogcp/views.py +++ b/ogcp/views.py @@ -15,6 +15,7 @@ FS_CODES = { 1: 'EMPTY', 2: 'CACHE', 6: 'EXT4', + 9: 'FAT32', 13: 'NTFS' } |