Kaynağa Gözat

Secure Python2 str decoding

Valentin Niess 4 yıl önce
ebeveyn
işleme
f381494aaf
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      python_appimage/utils/compat.py

+ 1 - 1
python_appimage/utils/compat.py

@@ -6,5 +6,5 @@ def decode(s):
     '''
     try:
         return s.decode()
-    except AttributeError:
+    except Exception:
         return str(s)