You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
328 B
15 lines
328 B
12 years ago
|
#!/usr/bin/python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
import os
|
||
|
|
||
|
|
||
|
def find_config():
|
||
|
config_path = 'config.json'
|
||
|
if os.path.exists(config_path):
|
||
|
return config_path
|
||
|
config_path = os.path.join(os.path.dirname(__file__), '../', 'config.json')
|
||
|
if os.path.exists(config_path):
|
||
|
return config_path
|
||
|
return None
|