[SQL-CVS] r4638 - SQLObject/branches/1.5/sqlobject/tests
SQLObject is a Python ORM.
Brought to you by:
ianbicking,
phd
|
From: <sub...@co...> - 2013-08-14 17:11:22
|
Author: phd
Date: Wed Aug 14 11:11:12 2013
New Revision: 4638
Log:
On w32 there is no need to replace semicolon but it's recommended to straighten backslashes
Modified:
SQLObject/branches/1.5/sqlobject/tests/dbtest.py
Modified: SQLObject/branches/1.5/sqlobject/tests/dbtest.py
==============================================================================
--- SQLObject/branches/1.5/sqlobject/tests/dbtest.py Wed Aug 14 11:08:42 2013 (r4637)
+++ SQLObject/branches/1.5/sqlobject/tests/dbtest.py Wed Aug 14 11:11:12 2013 (r4638)
@@ -12,7 +12,7 @@
if sys.platform[:3] == "win":
def getcwd():
- return os.getcwd().replace(':', '|')
+ return os.getcwd().replace('\\', '/')
else:
getcwd = os.getcwd
|