Skip to content

Commit 4be98d0

Browse files
committed
Try to fix doc compilation / packages
1 parent 6d0ca40 commit 4be98d0

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

tmuxp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
from .window import Window
1919
from .pane import Pane
2020
from .workspacebuilder import WorkspaceBuilder
21-
from . import config, util, cli, _vendor
21+
from . import config, util, cli
2222

2323
import logging
2424

tmuxp/_vendor/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import colorama

tmuxp/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424
import re
25-
VERSIONFILE = "tmuxp/__init__.py"
25+
VERSIONFILE = os.path.join(os.path.abspath(os.path.dirname(__file__)), '__init__.py')
2626
verstrline = open(VERSIONFILE, "rt").read()
2727
VSRE = r"^__version__ = ['\"]([^'\"]*)['\"]"
2828
mo = re.search(VSRE, verstrline, re.M)

0 commit comments

Comments
 (0)