Move build products into out/
authorNelson Elhage <nelhage@mit.edu>
Mon, 28 Dec 2009 23:24:22 +0000 (18:24 -0500)
committerNelson Elhage <nelhage@mit.edu>
Mon, 28 Dec 2009 23:24:22 +0000 (18:24 -0500)
.gitignore
report.py
show-week.py

index 2f836aacf266b3e7fc17ec2d8a99aa68c904c1b9..07ac93895612574c4e8522a1f61e6c748b8355f5 100644 (file)
@@ -1,2 +1,3 @@
 *~
 *.pyc
 *~
 *.pyc
+out/
index 395988990af17eab2260fd38ea2b1b3a616c8593..2c9a97e584bee6c6bacfa2de6cb87505018b8d84 100644 (file)
--- a/report.py
+++ b/report.py
@@ -49,5 +49,5 @@ for (username, u) in users.items():
     for (i, w) in enumerate(weeks):
         print " [%d]: %s" % (i, w)
 
     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)
     yaml.safe_dump(log, f)
index a21f14cb9cac3ec96be004954ade3f4c8f5ab120..79dc4bc955609326263efc351a4041f50785a609 100644 (file)
@@ -6,7 +6,7 @@ import sys
 
 START = datetime.datetime(2009, 12, 21, 6)
 
 
 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:
     report = yaml.safe_load(r)
 
 with open('bloggers.yml') as f:

Benjamin Mako Hill || Want to submit a patch?