From 4c7148eb5e5df1660ef178bfa051153c07d74002 Mon Sep 17 00:00:00 2001 From: matham Date: Thu, 31 Dec 2015 15:56:46 -0500 Subject: [PATCH] Fix pyinstaller rt hook name. --- kivy/tools/packaging/pyinstaller_hooks/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kivy/tools/packaging/pyinstaller_hooks/__init__.py b/kivy/tools/packaging/pyinstaller_hooks/__init__.py index a8552e7fd..4fc761249 100644 --- a/kivy/tools/packaging/pyinstaller_hooks/__init__.py +++ b/kivy/tools/packaging/pyinstaller_hooks/__init__.py @@ -104,7 +104,7 @@ def runtime_hooks(): ``runtime_hooks=runtime_hooks()`` in the spec file. Pyinstaller comes preinstalled with this hook. ''' - return [join(curdir, 'rt-hook-kivy.py')] + return [join(curdir, 'pyi_rth_kivy.py')] def hookspath():