fix coresched locating cgroup and reduce verbosity
[nodemanager.git] / config.py
index f9c5920..cfc35f8 100644 (file)
--- a/config.py
+++ b/config.py
@@ -1,16 +1,11 @@
 #!/usr/bin/python
 #
-# $Id$
-# $URL$
-#
 # Parses the PLC configuration file /etc/planetlab/plc_config, which
 # is bootstrapped by Boot Manager, but managed by us.
 #
 # Mark Huang <mlhuang@cs.princeton.edu>
 # Copyright (C) 2006 The Trustees of Princeton University
 #
-# $Id$
-#
 
 import os
 
@@ -47,4 +42,6 @@ class Config:
 
 if __name__ == '__main__':
     from pprint import pprint
-    pprint(Config().__dict__.items())
+    for (k,v) in Config().__dict__.iteritems():
+        if k not in ['__builtins__']:
+            pprint ( (k,v), )