mirror of https://github.com/BOINC/boinc.git
13 lines
230 B
Plaintext
13 lines
230 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
# $Id$
|
||
|
|
||
|
import boinc_path_config
|
||
|
from Boinc import database, db_mid, configxml, projectxml
|
||
|
|
||
|
config = configxml.default_config()
|
||
|
database.connect(config.config)
|
||
|
|
||
|
projectxml.ProjectFile().read().commit_all()
|
||
|
|