Skip to content
This repository was archived by the owner on Jun 12, 2023. It is now read-only.

Commit 27111ca

Browse files
committed
fixup commit author
1 parent 38c376c commit 27111ca

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/tag.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,9 @@ def checkout(tag):
3535
def commit(tag):
3636
subprocess.check_call(['git', 'clean', '-xdf'])
3737
print("Creating tag {}".format(tag))
38-
subprocess.check_call(['git', 'commit', '--allow-empty', '-m',
39-
'--author="Pandas Development Team <[email protected]>"',
40-
'RLS: {}'.format(tag[1:])])
38+
subprocess.check_call(['git', 'commit', '--allow-empty',
39+
'--author', 'Pandas Development Team <[email protected]>',
40+
'-m', 'RLS: {}'.format(tag[1:])])
4141
subprocess.check_call(['git', 'tag', '-a', tag, '-m',
4242
'Version {}'.format(tag[1:])])
4343

0 commit comments

Comments
 (0)