commit 76bbab9daffec81feab0c987303de95618596718
Author: David Sorber <dsorber@ryft.com>
Date:   Wed Nov 26 07:33:18 2014 -0500

    Well that is one of the things I don't like about Python.  You can silently corrupt a namespace and have no idea about it until your code actually runs. This should fix the issue for now.

diff --git a/software/fiemap_testing/extent_test.py b/software/fiemap_testing/extent_test.py
index 893702f..bbb19cc 100644
--- a/software/fiemap_testing/extent_test.py
+++ b/software/fiemap_testing/extent_test.py
@@ -88,8 +88,8 @@ class Tester(Process):
         elpased = end - start
         hours, remainder = divmod(elpased.seconds, 3600)
         minutes, seconds = divmod(remainder, 60)
-        time = '{:02d}:{:02d}:{:02d}'.format(hours, minutes, seconds)
-        self.out('Filler took: {:s}'.format(time))
+        time_str = '{:02d}:{:02d}:{:02d}'.format(hours, minutes, seconds)
+        self.out('Filler took: {:s}'.format(time_str))
         
         # Wait for 30 seconds for any delayed actions to resolve
         time.sleep(30)
@@ -143,7 +143,8 @@ def main():
         return -1
         
     # Create output folder if it does not already exist
-    output_path = os.path.join(output_path, fs_name)
+    date_str = datetime.datetime.now().strftime('%Y%m%d-%H%M')
+    output_path = os.path.join(output_path, fs_name, date_str)
     if os.path.exists(output_path):
         print 'ERROR: output folder "{:s}" already exists!'.format(output_path)
         return -1
