Slight update for Python scripts

pull/2/head
Deathamns 10 years ago committed by gorhill
parent 3de061b92b
commit 6e40b641a2

@ -3,10 +3,11 @@
import os import os
import json import json
import sys import sys
from io import open
from shutil import rmtree from shutil import rmtree
from collections import OrderedDict from collections import OrderedDict
if not sys.argv[1]: if len(sys.argv) == 1 or not sys.argv[1]:
raise SystemExit('Build dir missing.') raise SystemExit('Build dir missing.')

Loading…
Cancel
Save