Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tests/pybin/tools.py

    re1bdccb ra95c117  
    4848                return False
    4949
    50         return match.group(1).startswith("ASCII text")
     50        return match.group(1) == "ASCII text"
    5151
    5252# Remove 1 or more files silently
     
    171171
    172172        # Start the walk
    173         dname = settings.SRCDIR
     173        abspath = os.path.abspath(__main__.__file__)
     174        dname = os.path.dirname(abspath)
    174175        os.path.walk(dname, step, '')
    175176
Note: See TracChangeset for help on using the changeset viewer.