Skip to content

Commit e0a8458

Browse files
committed
remove trailing space in subsituted text
1 parent 5fcf3f6 commit e0a8458

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/update_android_ios_dependencies.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ def replace_module_line(m):
489489
pkg = m.group('pkg').replace('-', '_').replace(':', '.')
490490
if pkg not in version_map:
491491
return m.group(0)
492-
repl = '|%s| %s:%s ' % (m.group('spaces'), m.group('pkg'), version_map[pkg])
492+
repl = '|%s| %s:%s' % (m.group('spaces'), m.group('pkg'), version_map[pkg])
493493
return repl
494494

495495
substituted_pairs = []

0 commit comments

Comments
 (0)