Skip to content

Commit

Permalink
Fix missing import of InterfaceTemplateException
Browse files Browse the repository at this point in the history
  • Loading branch information
pantuza committed Jul 25, 2018
1 parent 4f2ae21 commit 5878bd6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion networkapi/api_channel/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
from networkapi.api_interface.exceptions import UnsupportedEquipmentException
from networkapi.api_interface.exceptions import InvalidIdInterfaceException
from networkapi.api_interface.exceptions import InterfaceException
from networkapi.api_interface.exceptions import InterfaceTemplateException

from networkapi.interface.models import InterfaceNotFoundError

Expand Down Expand Up @@ -174,4 +175,4 @@ def put(self, request, *args, **kwargs):

except Exception as err:
self.log.error(err)
raise err
raise err

0 comments on commit 5878bd6

Please sign in to comment.