diff options
author | Steven Knight <knight@baldmt.com> | 2010-05-20 19:06:28 (GMT) |
---|---|---|
committer | Steven Knight <knight@baldmt.com> | 2010-05-20 19:06:28 (GMT) |
commit | de6b9527a9cd1a5385c414e984dcc47fcb21a71e (patch) | |
tree | aafaf6e6bf3180dcd94896fec8b8eb2f71d93c03 /bin/import-test.py | |
parent | 4b3a032823160c0c4560a4644223691ee4f12fc7 (diff) | |
download | SCons-de6b9527a9cd1a5385c414e984dcc47fcb21a71e.zip SCons-de6b9527a9cd1a5385c414e984dcc47fcb21a71e.tar.gz SCons-de6b9527a9cd1a5385c414e984dcc47fcb21a71e.tar.bz2 |
vert old-style classes in bin/* scripts to new-style classes.
Diffstat (limited to 'bin/import-test.py')
-rw-r--r-- | bin/import-test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/import-test.py b/bin/import-test.py index 8ed5399..65b6e79 100644 --- a/bin/import-test.py +++ b/bin/import-test.py @@ -35,7 +35,7 @@ directory = sys.argv[1] Top = None TopPath = None -class Dir: +class Dir(object): def __init__(self, path): self.path = path self.entries = {} |