changeset 9:cd579b9ef6b5

Fixed issue setting attributes of a repository in Windows. IN: -
author John Schneiderman <JohnMS@CodeGNU.com>
date Wed, 23 Jul 2014 08:36:18 -0500
parents bfeea4de4102
children d90ce1288692
files src/manager.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/manager.py	Tue Jul 22 17:46:34 2014 -0500
+++ b/src/manager.py	Wed Jul 23 08:36:18 2014 -0500
@@ -232,7 +232,7 @@
 	import os
 	import sys
 
-	status = subprocess.call(["attrib.exe", "+H +I +S " + settings.RepositoryPath + os.sep + repo.StorageName + os.sep + ".hg"])
+	status = subprocess.call(["attrib.exe", '+H', '+I', '+S', settings.RepositoryPath + os.sep + repo.StorageName + os.sep + '.hg'])
 	if 0 == status:
 		print "Secured repository store."
 	else: