From 5ec49c1b8030d5b66af9153ad519bcc45751c6f6 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Fri, 14 Dec 2018 16:24:04 +0000 Subject: [PATCH] StandardError -> Exception (for python3 compat') --- moulinette/core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moulinette/core.py b/moulinette/core.py index 24c72495..47fedbbd 100644 --- a/moulinette/core.py +++ b/moulinette/core.py @@ -410,7 +410,7 @@ def clean_session(session_id, profiles=[]): # Moulinette core classes ---------------------------------------------- -class MoulinetteError(StandardError): +class MoulinetteError(Exception): """Moulinette base exception""" def __init__(self, key, raw_msg=False, *args, **kwargs): if raw_msg: