diff options
| author | Philipp Hagemeister <phihag@phihag.de> | 2012-11-28 02:04:46 +0100 | 
|---|---|---|
| committer | Philipp Hagemeister <phihag@phihag.de> | 2012-11-28 02:04:46 +0100 | 
| commit | 59ae15a507cbf93de13f8fda8444d2d9a251747a (patch) | |
| tree | 5cbdf3f0293d6dfb079f185eb473d6f711647a96 /test/test_import.py | |
| parent | 40b35b4aa6040ecc3ff7b3c9c8b908249633d86e (diff) | |
Convert all tabs to 4 spaces (PEP8)
Diffstat (limited to 'test/test_import.py')
| -rw-r--r-- | test/test_import.py | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/test/test_import.py b/test/test_import.py index 6c5d0bcc1..acf95444d 100644 --- a/test/test_import.py +++ b/test/test_import.py @@ -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() | 
