diff options
author | Rechi <Rechi@users.noreply.github.com> | 2017-11-23 09:11:02 +0100 |
---|---|---|
committer | Rechi <Rechi@users.noreply.github.com> | 2017-11-23 09:11:02 +0100 |
commit | 63e33f6b950f953ecd9d300e38732f97400ab868 (patch) | |
tree | fa7004cdb14325bbb2e3ce02b561c70382405286 /addons/metadata.demo.movies | |
parent | fb04819aeeade9bef07933682537a9645bd6005a (diff) |
[addons][python] metadata.demo.* replace print statement with print function
Diffstat (limited to 'addons/metadata.demo.movies')
-rw-r--r-- | addons/metadata.demo.movies/demo.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/addons/metadata.demo.movies/demo.py b/addons/metadata.demo.movies/demo.py index d3708468f6..48ea53df7c 100644 --- a/addons/metadata.demo.movies/demo.py +++ b/addons/metadata.demo.movies/demo.py @@ -35,7 +35,7 @@ if action == 'find': except: pass - print 'Find movie with title %s from year %i' %(title, int(year)) + print('Find movie with title %s from year %i' %(title, int(year))) liz=xbmcgui.ListItem('Demo movie 1', thumbnailImage='DefaultVideo.png', offscreen=True) liz.setProperty('relevance', '0.5') xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]), url="/path/to/movie", listitem=liz, isFolder=True) |