Skip to content

Commit

Permalink
Update run.py
Browse files Browse the repository at this point in the history
fixing small bugs
  • Loading branch information
mnunes01 committed Feb 16, 2015
1 parent eb9ceb1 commit 887d575
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions run.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#!/usr/bin/env python
from __future__ import print_function
import os
import sys
import time
from __future__ import print_function


# make sure it's running the mincss here and not anything installed
sys.path.insert(0, os.path.dirname(__file__))
Expand Down Expand Up @@ -44,7 +45,7 @@ def run(args):
before_name = 'before_' + link.href.split('/')[-1]
with open(os.path.join(output_dir, before_name), 'w') as f:
f.write(link.before.encode('utf-8'))
print("Files written to", output_dir
print("Files written to", output_dir)
print()
print(
'(from %d to %d saves %d)' %
Expand Down

0 comments on commit 887d575

Please sign in to comment.