[Yt-svn] yt-commit r1435 - trunk/yt

skillman at wrangler.dreamhost.com skillman at wrangler.dreamhost.com
Tue Sep 8 10:22:51 PDT 2009


Author: skillman
Date: Tue Sep  8 10:22:50 2009
New Revision: 1435
URL: http://yt.spacepope.org/changeset/1435

Log:
Progress bar was failing on regular python when it was trying to find os.environ in the "SAGE_ROOT" test.  Added os to imports.


Modified:
   trunk/yt/funcs.py

Modified: trunk/yt/funcs.py
==============================================================================
--- trunk/yt/funcs.py	(original)
+++ trunk/yt/funcs.py	Tue Sep  8 10:22:50 2009
@@ -23,7 +23,7 @@
   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 """
 
-import time, types, signal, inspect, traceback, sys, pdb, rpdb
+import time, types, signal, inspect, traceback, sys, pdb, rpdb, os
 import warnings
 import progressbar as pb
 from math import floor, ceil



More information about the yt-svn mailing list