Move build products into out/
This commit is contained in:
parent
1f7eb175f5
commit
32e6bed76a
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
*~
|
||||
*.pyc
|
||||
out/
|
||||
|
|
|
@ -49,5 +49,5 @@ for (username, u) in users.items():
|
|||
for (i, w) in enumerate(weeks):
|
||||
print " [%d]: %s" % (i, w)
|
||||
|
||||
with open('report.yml', 'w') as f:
|
||||
with open('out/report.yml', 'w') as f:
|
||||
yaml.safe_dump(log, f)
|
||||
|
|
|
@ -6,7 +6,7 @@ import sys
|
|||
|
||||
START = datetime.datetime(2009, 12, 21, 6)
|
||||
|
||||
with open('report.yml') as r:
|
||||
with open('out/report.yml') as r:
|
||||
report = yaml.safe_load(r)
|
||||
|
||||
with open('bloggers.yml') as f:
|
||||
|
|
Loading…
Reference in a new issue