Revision: 3647
          http://matplotlib.svn.sourceforge.net/matplotlib/?rev=3647&view=rev
Author:   mdboom
Date:     2007-08-01 05:15:03 -0700 (Wed, 01 Aug 2007)

Log Message:
-----------
Don't import commands if running on Windows

Modified Paths:
--------------
    trunk/matplotlib/setupext.py

Modified: trunk/matplotlib/setupext.py
===================================================================
--- trunk/matplotlib/setupext.py        2007-07-31 18:42:39 UTC (rev 3646)
+++ trunk/matplotlib/setupext.py        2007-08-01 12:15:03 UTC (rev 3647)
@@ -60,7 +60,8 @@
 }
 
 import sys, os, stat
-import commands
+if sys.platform != 'win32':
+    import commands
 from sets import Set
 from textwrap import fill
 from distutils.core import Extension


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now >>  http://get.splunk.com/
_______________________________________________
Matplotlib-checkins mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/matplotlib-checkins

Reply via email to