mirror of https://github.com/BOINC/boinc.git
18 lines
306 B
Python
Executable File
18 lines
306 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# -*- mode: python; python-indent: 4; -*-
|
|
|
|
## $Id$
|
|
|
|
'''
|
|
A program to pass config file settings to calling programs via stdout
|
|
|
|
'''
|
|
|
|
import boinc_path_config
|
|
from Boinc import configxml
|
|
import sys, os
|
|
|
|
config = configxml.default_config().config
|
|
print config.__dict__.get(sys.argv[1])
|