mirror of
https://github.com/ammaraskar/pyCraft.git
synced 2025-02-23 15:21:37 +01:00
PEP8-friendliness, spaces instead of tabs
This commit is contained in:
parent
ebf5caab01
commit
fff3947b16
@ -1,17 +1,19 @@
|
||||
import os, subprocess
|
||||
import errno, sys
|
||||
import os
|
||||
import subprocess
|
||||
import errno
|
||||
import sys
|
||||
|
||||
EXPECTED_OUTPUT = "lists of files in version control and sdist match"
|
||||
|
||||
|
||||
def check_manifest():
|
||||
os.chdir('..')
|
||||
output = subprocess.check_output(["check-manifest"]).decode()
|
||||
print(output)
|
||||
if EXPECTED_OUTPUT == output.strip():
|
||||
return 1
|
||||
else:
|
||||
sys.exit(2)
|
||||
os.chdir('..')
|
||||
output = subprocess.check_output(["check-manifest"]).decode()
|
||||
print(output)
|
||||
if EXPECTED_OUTPUT == output.strip():
|
||||
return 1
|
||||
else:
|
||||
sys.exit(2)
|
||||
|
||||
if __name__ == '__main__':
|
||||
check_manifest()
|
||||
check_manifest()
|
||||
|
Loading…
Reference in New Issue
Block a user