From 268075063fbf5f796ee1bc419e5268f593c85f4d Mon Sep 17 00:00:00 2001 From: Damon McDougall Date: Sat, 26 Jul 2025 10:37:30 -0500 Subject: [PATCH] Use python3 print in plugins.rst --- docs/dev/plugins.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/plugins.rst b/docs/dev/plugins.rst index c24a94093..885c38ee4 100644 --- a/docs/dev/plugins.rst +++ b/docs/dev/plugins.rst @@ -78,7 +78,7 @@ Here's an example plugin that adds a simple command:: my_super_command = Subcommand('super', help='do something super') def say_hi(lib, opts, args): - print "Hello everybody! I'm a plugin!" + print("Hello everybody! I'm a plugin!") my_super_command.func = say_hi class SuperPlug(BeetsPlugin):