Comment #10 on issue 1174 by manjunath.shiva: All the reviews broke after  
upgrade from RC1 to RC2.
http://code.google.com/p/reviewboard/issues/detail?id=1174

Here is more help on output when used ';' and ':' on Windows XP. I think it  
might
break for others so we should first check os.name and set delimiter?????

>>> for dir in os.environ['PATH'].split(os.environ.get('IFS', ';')):
...    print dir
...
C:\PHP\
C:\Perl\bin\
C:\Program Files\ActiveState Perl Dev Kit 7.3 Deployment\bin
C:\PROGRA~1\ParaSoft\INSURE~1\BIN~1.WIN
C:\Perl\bin
C:\WINNT\system32
C:\WINNT
C:\WINNT\System32\Wbem
C:\buildtools
C:\Program Files\UWIN3.1\usr\bin
C:\Vim\vim62
C:\Program Files\EMC\Navisphere CLI
C:\Program Files\EMC\Navisphere Admsnap
C:\Program Files\Rational\common
C:\Program Files\QuickTime\QTSystem\
C:\WINNT\system32\
C:\python25
C:\SWIG
C:\Program Files\Java\jdk1.5.0_08\bin
C:\splint-3.1.1\bin
C:\Program Files\cppcheck
C:\Python25\Lib\site-packages\django\bin

C:\Program Files\TortoiseSVN\bin
C:\Program Files\MySQL\MySQL Server 5.1\bin
C:\Python25\Scripts
C:\Program Files\Windows Imaging\
C:\PROGRA~1\ParaSoft\INSURE~1\BIN~1.WIN
C:\Program Files\CVSNT\
C:\WINNT\system32\
C:\Program Files\UWIN3.1\usr\bin

Now using ':'

>>> for dir in os.environ['PATH'].split(os.environ.get('IFS', ':')):
...    print dir
...
C
\PHP\;C
\Perl\bin\;C
\Program Files\ActiveState Perl Dev Kit 7.3 Deployment\bin;C
\PROGRA~1\ParaSoft\INSURE~1\BIN~1.WIN;C
\Perl\bin;C
\WINNT\system32;C
\WINNT;C
\WINNT\System32\Wbem;C
\buildtools;C
\Program Files\UWIN3.1\usr\bin;C
\Vim\vim62;C
\Program Files\EMC\Navisphere CLI;C
\Program Files\EMC\Navisphere Admsnap;C
\Program Files\Rational\common;C
\Program Files\QuickTime\QTSystem\;C
\WINNT\system32\;C
\python25;C
\SWIG;C
\Program Files\Java\jdk1.5.0_08\bin;C
\splint-3.1.1\bin;C
\Program Files\cppcheck;C
\Python25\Lib\site-packages\django\bin;;C
\Program Files\TortoiseSVN\bin;C
\Program Files\MySQL\MySQL Server 5.1\bin;C
\Python25\Scripts;C
\Program Files\Windows Imaging\;C
\PROGRA~1\ParaSoft\INSURE~1\BIN~1.WIN;C
\Program Files\CVSNT\;C
\WINNT\system32\;C
\Program Files\UWIN3.1\usr\bin


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"reviewboard-issues" group.
To post to this group, send email to reviewboard-issues@googlegroups.com
To unsubscribe from this group, send email to 
reviewboard-issues+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/reviewboard-issues?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to