Skip to content

Commit

Permalink
Remove final_cleanup function that was just passing
Browse files Browse the repository at this point in the history
final_cleanup in tools simply passed. The function was called in lib/download, but no
value was stored, so this wasn't influencing the execution of the code.
  • Loading branch information
ethanwhite committed Apr 17, 2015
1 parent 5ae69be commit 46d8227
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions lib/download.py
Expand Up @@ -67,8 +67,6 @@ def write(self, s):
error = True
print "<b><font color='red'>Error: " + e.__str__() + "</font></b>"

final_cleanup(engine)

if not error:
finish = time()

Expand Down
5 changes: 0 additions & 5 deletions lib/tools.py
Expand Up @@ -42,11 +42,6 @@ def getmd5(lines):
return sum.hexdigest()


def final_cleanup(engine):
"""Perform final cleanup operations after all scripts have run."""
pass


config_path = os.path.join(HOME_DIR, 'connections.config')

def get_saved_connection(engine_name):
Expand Down

0 comments on commit 46d8227

Please sign in to comment.