Ignore:
Timestamp:
Jun 21, 2010, 11:26:20 AM (14 years ago)
Author:
hudson
Message:

Refactoring to clean up pylint errors.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/anuga_core/source/anuga/count_lines.py

    r4070 r7865  
    44import os
    55
    6 s = 'find . -type f -name "*.py" -print | xargs wc -l'
    7 print s
    8 os.system(s)
     6cmd_string = 'find . -type f -name "*.py" -print | xargs wc -l'
     7print cmd_string
     8os.system(cmd_string)
    99
    1010
    11 s = 'find . -type f -name "*.c" -print | xargs wc -l'
    12 print s
    13 os.system(s)
     11cmd_string = 'find . -type f -name "*.c" -print | xargs wc -l'
     12print cmd_string
     13os.system(cmd_string)
    1414
    1515
Note: See TracChangeset for help on using the changeset viewer.