ICU-20119 Review changes.

This commit is contained in:
Norbert Runge 2018-09-18 16:44:39 -07:00 committed by Shane Carr
parent 540f3b7645
commit a480c5b86d
No known key found for this signature in database
GPG key ID: FCED3B24AAB18B5C

View file

@ -14,7 +14,7 @@
# It only works correctly on platforms where the native line ending is a plain \n
#
# usage:
# icu-svnprops-check.py [options]
# icu-file-utf8-check.py [options]
#
# options:
# -h | --help Print a usage line and exit.
@ -97,12 +97,8 @@ def main(argv):
print "Repository file not in working copy: " + f
continue;
if source_file_re.match(f):
source_file = True
check_file(f, source_file);
else:
source_file = False
check_file(f, source_file)
source_file = source_file_re.match(f)
check_file(f, source_file)
if __name__ == "__main__":
main(sys.argv[1:])