Move build products into out/

This commit is contained in:
Nelson Elhage 2009-12-28 18:24:22 -05:00
parent 1f7eb175f5
commit 32e6bed76a
3 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
*~
*.pyc
out/

View File

@ -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)

View File

@ -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: