X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=check_copyright.py;h=49775fe57f120ff9a84d631a4902f876e2530f48;hb=ac056ee3c8e228f5b79eca9bad0fec624c595b1b;hp=2f4e3cc2e632d6638f5b84cf5c862d27fad97fef;hpb=2cf9e838e652ae811d9b3931914771ad1836c6b8;p=modules%2Fhydro.git diff --git a/check_copyright.py b/check_copyright.py index 2f4e3cc2..49775fe5 100644 --- a/check_copyright.py +++ b/check_copyright.py @@ -6,6 +6,10 @@ 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 ): @@ -34,3 +38,4 @@ def check_folder( theFolder ): check_folder( 'src/HYDROData' ) check_folder( 'src/HYDROGUI' ) check_folder( 'src/HYDROPy' ) +check_folder( 'src/HYDRO_tests' )