File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 21
21
This module provides functions for interacting with Message Boards on the
22
22
LabKey Server.
23
23
"""
24
+ from __future__ import unicode_literals
24
25
from requests .exceptions import SSLError
25
26
from labkey .utils import build_url
26
27
Original file line number Diff line number Diff line change 21
21
This module provides functions for interacting with Wiki's on the
22
22
LabKey Server.
23
23
"""
24
+ from __future__ import unicode_literals
24
25
import json
25
26
from labkey .utils import build_url , handle_response
26
27
from requests .exceptions import SSLError
Original file line number Diff line number Diff line change 23
23
from setuptools import setup
24
24
25
25
packages = [
26
- 'labkey'
26
+ 'labkey' ,
27
+ 'labkey.unsupported'
27
28
]
28
29
29
30
with open ('labkey/__init__.py' , 'r' ) as fd :
You can’t perform that action at this time.
0 commit comments