Skip to content

Commit 47a4186

Browse files
committed
Replace tabs with spaces. (NFC)
(cherry picked from commit 646d927)
1 parent 4c73a62 commit 47a4186

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -35,24 +35,24 @@ def build(self):
3535
import re
3636
self.assertTrue(re.match(r'[0-9a-fA-F-]+', uuid))
3737
plist = os.path.join(dsym, 'Contents', 'Resources', uuid + '.plist')
38-
with open(plist, 'w') as f:
38+
with open(plist, 'w') as f:
3939
f.write('<?xml version="1.0" encoding="UTF-8"?>\n')
4040
f.write('<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">\n')
41-
f.write('<plist version="1.0">\n')
42-
f.write('<dict>\n')
43-
f.write(' <key>DBGSourcePathRemapping</key>\n')
44-
f.write(' <dict>\n')
45-
f.write(' <key>' + botdir + '</key>\n')
46-
f.write(' <string>' + userdir + '</string>\n')
47-
f.write(' </dict>\n')
48-
f.write('</dict>\n')
49-
f.write('</plist>\n')
41+
f.write('<plist version="1.0">\n')
42+
f.write('<dict>\n')
43+
f.write(' <key>DBGSourcePathRemapping</key>\n')
44+
f.write(' <dict>\n')
45+
f.write(' <key>' + botdir + '</key>\n')
46+
f.write(' <string>' + userdir + '</string>\n')
47+
f.write(' </dict>\n')
48+
f.write('</dict>\n')
49+
f.write('</plist>\n')
5050

5151

5252
@skipIf(debug_info=no_match("dsym"))
5353
def test(self):
5454
self.build()
55-
55+
5656
target, process, _, _ = lldbutil.run_to_name_breakpoint(
5757
self, 'main')
5858
self.expect("source list -n main", substrs=["Hello Absolute"])

0 commit comments

Comments
 (0)