make use of is_xml()

We have a function is_xml, but it's not used anywhere. This patch
calls is_xml where appropriate.

Change-Id: I7909410f4e4db46837e618350da7c93bf31271ce
This commit is contained in:
Roger Luethi 2014-06-05 17:17:36 +02:00
parent bd7c419183
commit aab5babb6f
1 changed files with 2 additions and 6 deletions

View File

@ -376,9 +376,7 @@ def check_deleted_files(rootdir, file_exceptions, verbose):
os.chdir(root)
for f in files:
if (not f.endswith('.xml') or
f == 'pom.xml' or
f in file_exceptions):
if not is_xml(f) or f in file_exceptions:
continue
path = os.path.abspath(os.path.join(root, f))
@ -923,9 +921,7 @@ def find_affected_books(rootdir, book_exceptions, file_exceptions,
f_abs = os.path.abspath(os.path.join(root, f))
if is_book_master(f_base):
book_bk[f_abs] = book_root
if (not f.endswith('.xml') or
f == "pom.xml" or
f in file_exceptions):
if not is_xml(f) or f in file_exceptions:
continue
try: