X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=check_copyright.py;h=c7781f45e606fec7eedecd5df2baa76b9a3a545c;hb=325d492a399ed96098ef6358e1b27566ab0b886a;hp=b306ea217dc8a08e81fa7427fc0c3c409a60ee2a;hpb=e744ba34fd38d6744d11b54cd15b6f86350695b2;p=modules%2Fhydro.git diff --git a/check_copyright.py b/check_copyright.py index b306ea21..c7781f45 100644 --- a/check_copyright.py +++ b/check_copyright.py @@ -6,23 +6,27 @@ theCopyright_line2 = '// This library is free software; you can redistribute it def check_file( theFile ): global files + + if theFile=='src/HYDRO_tests/test_HYDROData_LandCoverMap.cxx': + return True; #in the file the unicode is used + #print 'Checking %s...' % theFile aLines = open( theFile, 'r' ).readlines() if( len( aLines )==0 ): - print 'Empty file: ', theFile + print('Empty file: ', theFile) return False aFirstLine = aLines[0][:-1] aSecondLine = aLines[1][:-1] if( aFirstLine != theCopyright_line1 or aSecondLine != theCopyright_line2 ): - print 'Incorrect copyright in the', theFile + print('Incorrect copyright in the', theFile) def check_folder( theFolder ): aFiles = os.listdir( theFolder ); - aHeaders = filter( lambda x: x.endswith('.h'), aFiles ); - aSources = filter( lambda x: x.endswith('.cxx'), aFiles ); - aSIPs = filter( lambda x: x.endswith('.sip'), aFiles ); + aHeaders = [x for x in aFiles if x.endswith('.h')]; + aSources = [x for x in aFiles if x.endswith('.cxx')]; + aSIPs = [x for x in aFiles if x.endswith('.sip')]; for aHeader in aHeaders: check_file( theFolder + '/' + aHeader ) for aSource in aSources: