From 297b47fca32235ed9a530064eeaa3f52651c4c6e Mon Sep 17 00:00:00 2001 From: Andreas Preikschat Date: Thu, 28 Mar 2013 15:57:47 +0100 Subject: [PATCH] added comment --- openlp/core/ui/media/vendor/vlc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/openlp/core/ui/media/vendor/vlc.py b/openlp/core/ui/media/vendor/vlc.py index b963c7ea1..91657f261 100644 --- a/openlp/core/ui/media/vendor/vlc.py +++ b/openlp/core/ui/media/vendor/vlc.py @@ -3422,6 +3422,7 @@ def libvlc_media_new_path(p_instance, path): f = _Cfunctions.get('libvlc_media_new_path', None) or \ _Cfunction('libvlc_media_new_path', ((1,), (1,),), class_result(Media), ctypes.c_void_p, Instance, ctypes.c_char_p) + # OpenLP: Do not change this line. Needed for python3 rework. return f(p_instance, str_to_bytes(path)) def libvlc_media_new_fd(p_instance, fd):