We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9620cab commit 83f6537Copy full SHA for 83f6537
3 files changed
labkey/unsupported/messageboard.py
@@ -21,6 +21,7 @@
21
This module provides functions for interacting with Message Boards on the
22
LabKey Server.
23
"""
24
+from __future__ import unicode_literals
25
from requests.exceptions import SSLError
26
from labkey.utils import build_url
27
labkey/unsupported/wiki.py
This module provides functions for interacting with Wiki's on the
import json
from labkey.utils import build_url, handle_response
setup.py
@@ -23,7 +23,8 @@
from setuptools import setup
packages = [
- 'labkey'
+ 'labkey',
+ 'labkey.unsupported'
28
]
29
30
with open('labkey/__init__.py', 'r') as fd:
0 commit comments