diff options
Diffstat (limited to 'libpathod/language')
-rw-r--r-- | libpathod/language/__init__.py | 2 | ||||
-rw-r--r-- | libpathod/language/websockets.py | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/libpathod/language/__init__.py b/libpathod/language/__init__.py index 52ccf61c..48466fa6 100644 --- a/libpathod/language/__init__.py +++ b/libpathod/language/__init__.py @@ -2,7 +2,7 @@ import time import pyparsing as pp -from . import base, http, websockets, writer, exceptions +from . import http, websockets, writer, exceptions from exceptions import * from base import Settings diff --git a/libpathod/language/websockets.py b/libpathod/language/websockets.py index 96dbce53..a42dfc2f 100644 --- a/libpathod/language/websockets.py +++ b/libpathod/language/websockets.py @@ -93,6 +93,7 @@ COMPONENTS = ( class WebsocketFrame(message.Message): components = COMPONENTS logattrs = ["body"] + # Used for nested frames unique_name = "body" @property |