diff options
Diffstat (limited to '')
-rw-r--r-- | project/os.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/project/os.py b/project/os.py index 53b64e1..eaa63db 100644 --- a/project/os.py +++ b/project/os.py @@ -13,7 +13,7 @@ class OS(Enum): CYGWIN = 'Cygwin' def __str__(self): - return self.value + return str(self.value) @staticmethod def current(): |