Replace tabs with spaces. (NFC)
authorAdrian Prantl <aprantl@apple.com>
Mon, 11 Nov 2019 20:22:55 +0000 (12:22 -0800)
committerAdrian Prantl <aprantl@apple.com>
Mon, 11 Nov 2019 20:22:55 +0000 (12:22 -0800)
lldb/packages/Python/lldbsuite/test/macosx/DBGSourcePathRemapping/TestDSYMSourcePathRemapping.py

index 2ee3791..0f5daf5 100644 (file)
@@ -35,24 +35,24 @@ class TestDSYMSourcePathRemapping(lldbtest.TestBase):
         import re
         self.assertTrue(re.match(r'[0-9a-fA-F-]+', uuid))
         plist = os.path.join(dsym, 'Contents', 'Resources', uuid + '.plist')
-       with open(plist, 'w') as f:
+        with open(plist, 'w') as f:
             f.write('<?xml version="1.0" encoding="UTF-8"?>\n')
             f.write('<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">\n')
-           f.write('<plist version="1.0">\n')
-           f.write('<dict>\n')
-           f.write('  <key>DBGSourcePathRemapping</key>\n')
-           f.write('  <dict>\n')
-           f.write('    <key>' + botdir + '</key>\n')
-           f.write('    <string>' + userdir + '</string>\n')
-           f.write('  </dict>\n')
-           f.write('</dict>\n')
-           f.write('</plist>\n')
+            f.write('<plist version="1.0">\n')
+            f.write('<dict>\n')
+            f.write('  <key>DBGSourcePathRemapping</key>\n')
+            f.write('  <dict>\n')
+            f.write('    <key>' + botdir + '</key>\n')
+            f.write('    <string>' + userdir + '</string>\n')
+            f.write('  </dict>\n')
+            f.write('</dict>\n')
+            f.write('</plist>\n')
 
 
     @skipIf(debug_info=no_match("dsym"))
     def test(self):
         self.build()
-        
+
         target, process, _, _ = lldbutil.run_to_name_breakpoint(
             self, 'main')
         self.expect("source list -n main", substrs=["Hello Absolute"])