diff options
author | Steve Reinhardt <stever@gmail.com> | 2008-02-05 17:43:45 -0800 |
---|---|---|
committer | Steve Reinhardt <stever@gmail.com> | 2008-02-05 17:43:45 -0800 |
commit | b96631e1a04d3f1af377c3949e74c637700bea53 (patch) | |
tree | 7d2256028602f2aec23a32a8da5486a45fe0aa80 /src | |
parent | d725ff450d962879e0f046a091261213e2ad35a1 (diff) | |
download | gem5-b96631e1a04d3f1af377c3949e74c637700bea53.tar.xz |
Cleaned up os.path imports a bit.
--HG--
extra : convert_revision : ee75bf9abd249ab053e804739cc50972475cd5b6
Diffstat (limited to 'src')
-rw-r--r-- | src/SConscript | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/SConscript b/src/SConscript index 7163e55d7..2ca8aa56d 100644 --- a/src/SConscript +++ b/src/SConscript @@ -32,11 +32,7 @@ import imp import os import sys -from os.path import basename -from os.path import isdir, join as joinpath -from os.path import exists -from os.path import isdir -from os.path import isfile +from os.path import basename, exists, isdir, isfile, join as joinpath import SCons |