X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=config.py;h=98bb224af9d805534f2c42dba5d3d13b927587e8;hb=209b8e50cc9068572cdc0328ac4ea2440d2fa75c;hp=9efdecc748f4b5e802154df0ff691f70a3bc9b0b;hpb=95221af187a49007095148f182c74467db555009;p=nodemanager.git diff --git a/config.py b/config.py index 9efdecc..98bb224 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,6 +42,6 @@ class Config: if __name__ == '__main__': from pprint import pprint - for (k,v) in Config().__dict__.iteritems(): + for (k, v) in Config().__dict__.iteritems(): if k not in ['__builtins__']: - pprint ( (k,v), ) + pprint ( (k, v), )