Minor updates.
authorKevin Lim <ktlim@umich.edu>
Fri, 14 Jul 2006 21:53:16 +0000 (17:53 -0400)
committerKevin Lim <ktlim@umich.edu>
Fri, 14 Jul 2006 21:53:16 +0000 (17:53 -0400)
src/python/m5/config.py:
    Formatting.
src/python/m5/main.py:
    Slightly more useful output when you don't enter in a valid script file.

--HG--
extra : convert_revision : 5a71a6c94dbedeb000f83f57b0b575c2df924509

src/python/m5/config.py
src/python/m5/main.py

index 8291e1e1bd91b6a005ec3328887edad0aed5b727..e7fe7b78f0f065d31ccac7adc2aebaf2440222e0 100644 (file)
@@ -666,7 +666,8 @@ class BaseProxy(object):
                 result, done = self.find(obj)
 
         if not done:
-            raise AttributeError, "Can't resolve proxy '%s' from '%s'" % \
+            raise AttributeError, \
+                  "Can't resolve proxy '%s' from '%s'" % \
                   (self.path(), base.path())
 
         if isinstance(result, BaseProxy):
index 54c54c1d5d9c57d8dbd72eb31de87c85fb3efeec..c97390d25aae1473cb61394da5f4279011a5ab39 100644 (file)
@@ -249,6 +249,8 @@ def main():
 
     # check to make sure we can find the listed script
     if not arguments or not os.path.isfile(arguments[0]):
+        if arguments and not os.path.isfile(arguments[0]):
+            print "Script %s not found" % arguments[0]
         usage(2)
 
     # tell C++ about output directory