Changeset 143

Show
Ignore:
Timestamp:
08/13/06 16:05:07 (2 years ago)
Author:
mk
Message:

Run pylint with --persistent option disabled, so running cheesecake_index won't mess with user ~/.pylint.d.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/mk/cheesecake/cheesecake_index.py

    r141 r143  
    10751075            self.cheesecake.log.debug("Running pylint on files: %s." % filenames) 
    10761076 
    1077             rc, output = run_cmd("pylint %s %s" % (filenames, self.pylint_args)) 
     1077            rc, output = run_cmd("pylint %s --persistent=n %s" % (filenames, self.pylint_args)) 
    10781078            if rc: 
    10791079                self.cheesecake.log.debug("encountered an error (%d):\n***\n%s\n***\n" % (rc, output))