X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=config.py;h=cfc35f83e088313fe4e04d1ddd4059b47547a97c;hb=ecee05390277f57b02d21ffca0195292bde1defa;hp=f9c5920cf2bad5257db8a89bc9b477d0b2069ba7;hpb=3224c1906c82596a86ae734181488ed14a0f0976;p=nodemanager.git diff --git a/config.py b/config.py index f9c5920..cfc35f8 100644 --- 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 # 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), )