Skip to content

Commit

Permalink
Merge pull request #18 from KOLANICH-libs/version_fix
Browse files Browse the repository at this point in the history
Fixed the bug with incorrect variable name when importing `__version__`
  • Loading branch information
guysv committed May 13, 2021
2 parents 209a1bf + 4621dd4 commit 49a486d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ilua/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
# This file is part of ILua which is released under GPLv2.
# See file LICENSE or go to https://www.gnu.org/licenses/gpl-2.0.txt
# for full license details.
from .version import version as __version__
from .version import __version__
2 changes: 1 addition & 1 deletion ilua/kernel.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
from .namedpipe import CoupleOPipes, get_pipe_path
from .proto import InterpreterProtocol, OutputCapture
from .inspector import Inspector
from .version import version as ilua_version
from .version import __version__ as ilua_version

INTERPRETER_SCRIPT = os.path.join(os.path.dirname(__file__), "interp.lua")
LUA_PATH_EXTRA = os.path.join(os.path.dirname(__file__), "?.lua")
Expand Down

0 comments on commit 49a486d

Please sign in to comment.