fix imports

This commit is contained in:
wiredfool 2015-06-16 13:29:41 -07:00
parent cedb226ef2
commit 159b01f54b
2 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,5 @@
import sys, os import sys
with open(sys.argv[1], 'r') as fd: with open(sys.argv[1], 'r') as fd:
content = '\n'.join(line.strip() for line in fd if line.strip()) content = '\n'.join(line.strip() for line in fd if line.strip())
if len(sys.argv) == 3: if len(sys.argv) == 3:

View File

@ -1,4 +1,5 @@
from fetch import fetch from fetch import fetch
import os
if __name__=='__main__': if __name__=='__main__':
for version in ['2.6.5', '2.7.6', '3.2.5', '3.3.5', '3.4.0']: for version in ['2.6.5', '2.7.6', '3.2.5', '3.3.5', '3.4.0']: