diff options
-rw-r--r-- | sos/policies/debian.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sos/policies/debian.py b/sos/policies/debian.py index 906bb230..0d6bcec9 100644 --- a/sos/policies/debian.py +++ b/sos/policies/debian.py @@ -40,7 +40,7 @@ class DebianPolicy(LinuxPolicy): def check(self): """This method checks to see if we are running on Debian. It returns True or False.""" - return os.path.isfile('/etc/debian_version'): + return os.path.isfile('/etc/debian_version') def debianVersion(self): try: |