Adding message when the script runs successfully

This commit is contained in:
Thunderforge 2017-09-02 22:31:30 -05:00 committed by Philippe Groarke
parent 4b6e659a84
commit c6daca32c1

View file

@ -109,5 +109,7 @@ for line in fileinput.input():
check_mapping(splitted[2])
check_duplicates(splitted[0], get_platform(splitted[2]), line)
if not success:
if success:
print("No mapping errors found!")
else:
sys.exit(1)