diff upreckon/files.py @ 155:f8041e1e4d0d

win32 now includes its App-Path-aware Popen wrapper in its __all__ App Paths are now checked when launching output validators.
author Oleg Oshmyan <chortos@inbox.lv>
date Sat, 04 Jun 2011 00:14:16 +0100
parents d5b6708c1955
children e0b2fbd7ebe0
line wrap: on
line diff
--- a/upreckon/files.py	Fri Jun 03 20:41:35 2011 +0100
+++ b/upreckon/files.py	Sat Jun 04 00:14:16 2011 +0100
@@ -209,7 +209,7 @@
 	def realize_path_archive(self, archive, root, virtpath, archpath):
 		if root and not archive.exists(root):
 			return False
-		if root: path = ''.join((root, '/', virtpath[0]))
+		if root: path = '/'.join((root, virtpath[0]))
 		else: path = virtpath[0]
 		if len(virtpath) > 1:
 			if self.realize_path_archive(archive, path, virtpath[1:], archpath):