mirror of
https://github.com/beetbox/beets.git
synced 2026-02-26 01:09:38 +01:00
Use python3 print in plugins.rst
This commit is contained in:
parent
0fec858a13
commit
268075063f
1 changed files with 1 additions and 1 deletions
|
|
@ -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):
|
||||
|
|
|
|||
Loading…
Reference in a new issue