From a7cb922983334f6a8f793d710763ab46478cb16d Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Wed, 14 Jun 2017 22:47:50 -0700 Subject: [PATCH] Fix missing exceptions import --- etiquette/decorators.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/etiquette/decorators.py b/etiquette/decorators.py index 49cc689..86ca384 100644 --- a/etiquette/decorators.py +++ b/etiquette/decorators.py @@ -2,6 +2,8 @@ import functools import time import warnings +from . import exceptions + def required_feature(features): '''