Tidied up some unused junk

This commit is contained in:
Ciaran Gultnieks 2013-10-31 15:46:32 +00:00
parent 94598a05f5
commit a762a0cb04
4 changed files with 3 additions and 14 deletions

View file

@ -60,7 +60,6 @@ def main():
statsdir = 'stats'
logsdir = os.path.join(statsdir, 'logs')
logsarchivedir = os.path.join(logsdir, 'archive')
datadir = os.path.join(statsdir, 'data')
if not os.path.exists(statsdir):
os.mkdir(statsdir)
@ -94,7 +93,7 @@ def main():
os.path.getsize(destpath) != destsize):
print "...retrieving " + f
ftp.get(f, destpath)
except Exception as e:
except Exception:
traceback.print_exc()
sys.exit(1)
finally: