Commit 9476a78c authored by Guido van Rossum's avatar Guido van Rossum

Remove "." or "" from front of sys.path (this bit me once).

parent 4e8ef5fc
......@@ -4,6 +4,9 @@
# On stderr, near and total misses are reported.
# '-l<flags>' argument adds ls -l<flags> of each file found.
import sys
if sys.path[0] in (".", ""): del sys.path[0]
import sys, os, string
from stat import *
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment