Skip to content

Commit 2680750

Browse files
dmcdougallwisp3rwind
authored andcommitted
Use python3 print in plugins.rst
1 parent 0fec858 commit 2680750

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/dev/plugins.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Here's an example plugin that adds a simple command::
7878

7979
my_super_command = Subcommand('super', help='do something super')
8080
def say_hi(lib, opts, args):
81-
print "Hello everybody! I'm a plugin!"
81+
print("Hello everybody! I'm a plugin!")
8282
my_super_command.func = say_hi
8383

8484
class SuperPlug(BeetsPlugin):

0 commit comments

Comments
 (0)