Convert all tabs to 4 spaces (PEP8)
[youtube-dl] / test / test_import.py
index 6c5d0bcc1d11506571a58654d17d156fa6b40cae..acf95444dfa728f7dd3b5697ffbc52073a3f061b 100644 (file)
@@ -5,9 +5,9 @@ import os.path
 import subprocess
 
 class TestImport(unittest.TestCase):
-       def test_import(self):
-               rootDir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
-               subprocess.check_call([sys.executable, '-c', 'import youtube_dl'], cwd=rootDir)
+    def test_import(self):
+        rootDir = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
+        subprocess.check_call([sys.executable, '-c', 'import youtube_dl'], cwd=rootDir)
 
 if __name__ == '__main__':
-       unittest.main()
+    unittest.main()