Changeset 35

Show
Ignore:
Timestamp:
Sun Sep 11 17:16:56 2005
Author:
giovannibajo
Message:

Use os.pathsep where appropriate

Files:

Legend:

Unmodified
Added
Removed
Modified
  • trunk/Makespec.py

    r34 r35  
    124 124         pathex = []  
    125 125     elif type(pathex) is type(''):  
    126           if iswin:  
    127               pathex = string.split(pathex, ';')  
    128           else:  
    129               pathex = string.split(pathex, ':')  
      126         pathex = string.split(pathex, os.pathsep)  
    130 127     if workdir is None:  
    131 128         workdir = os.getcwd()