diff options
author | wushin <pasekei@gmail.com> | 2016-06-30 21:58:23 -0500 |
---|---|---|
committer | wushin <pasekei@gmail.com> | 2016-06-30 21:58:23 -0500 |
commit | 14ea4ac915889b1c51da9eef45772685ca4b1a73 (patch) | |
tree | 7c2a78ca723b30903603dc3f6b4619763d52579f | |
parent | abcaf2f3338977659a3a6f489f2bbad0cf98ed23 (diff) | |
download | tools-14ea4ac915889b1c51da9eef45772685ca4b1a73.tar.gz tools-14ea4ac915889b1c51da9eef45772685ca4b1a73.tar.bz2 tools-14ea4ac915889b1c51da9eef45772685ca4b1a73.tar.xz tools-14ea4ac915889b1c51da9eef45772685ca4b1a73.zip |
Fix pathing issue with testxml and .tsxtest-xml-tsx-fix
-rwxr-xr-x | testxml/testxml.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testxml/testxml.py b/testxml/testxml.py index dc737b5..7f59e46 100755 --- a/testxml/testxml.py +++ b/testxml/testxml.py @@ -1412,7 +1412,7 @@ def testMap(mapName, file, path): tile.lastGid = 0 if source[-4:] == ".tsx": - relativePath = parentDir + "/" + mapsDir + source + relativePath = parentDir + os.path.sep + mapsDir try: dom2 = minidom.parse(relativePath) tileset = dom2.documentElement |