Fix conf.rs path in update_wiki

This commit is contained in:
mcarton 2016-03-15 21:17:26 +01:00
parent 8282a3a426
commit bd5af32cb1

View File

@ -23,7 +23,7 @@ def parse_path(p="src"):
def parse_conf(p):
c = {}
with open(p + '/conf.rs') as f:
with open(p + '/utils/conf.rs') as f:
f = f.read()
m = re.search(conf_re, f)