8 lines
188 B
Python
8 lines
188 B
Python
import os
|
|
import sys
|
|
|
|
def execute(fileName):
|
|
sys.stderr.write("error: external '{}' command called unexpectedly\n"
|
|
.format(os.path.basename(fileName)));
|
|
sys.exit(1)
|