mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
Remove superfluous parens
This commit is contained in:
parent
0fc07c28bc
commit
5c41a9e767
1 changed files with 3 additions and 3 deletions
|
|
@ -112,7 +112,7 @@ def bump_version(version):
|
|||
out_lines.append(line)
|
||||
|
||||
if not found:
|
||||
print(("No pattern found in {}".format(filename)))
|
||||
print("No pattern found in {}".format(filename))
|
||||
|
||||
# Write the file back.
|
||||
with open(filename, 'w') as f:
|
||||
|
|
@ -214,7 +214,7 @@ def changelog_as_markdown():
|
|||
def changelog():
|
||||
"""Get the most recent version's changelog as Markdown.
|
||||
"""
|
||||
print((changelog_as_markdown()))
|
||||
print(changelog_as_markdown())
|
||||
|
||||
|
||||
def get_version(index=0):
|
||||
|
|
@ -235,7 +235,7 @@ def get_version(index=0):
|
|||
def version():
|
||||
"""Display the current version.
|
||||
"""
|
||||
print((get_version()))
|
||||
print(get_version())
|
||||
|
||||
|
||||
@release.command()
|
||||
|
|
|
|||
Loading…
Reference in a new issue