[tuxdroid-svn] r5377 - software_suite_v3/smart-core/smart-server/branches/user_mode/util/misc
Status: Beta
Brought to you by:
ks156
|
From: ks156 <c2m...@c2...> - 2009-09-14 11:42:04
|
Author: ks156
Date: 2009-09-14 13:41:51 +0200 (Mon, 14 Sep 2009)
New Revision: 5377
Modified:
software_suite_v3/smart-core/smart-server/branches/user_mode/util/misc/systemPaths.py
Log:
* Fixed mispelled "resources"
Modified: software_suite_v3/smart-core/smart-server/branches/user_mode/util/misc/systemPaths.py
===================================================================
--- software_suite_v3/smart-core/smart-server/branches/user_mode/util/misc/systemPaths.py 2009-09-14 11:34:18 UTC (rev 5376)
+++ software_suite_v3/smart-core/smart-server/branches/user_mode/util/misc/systemPaths.py 2009-09-14 11:41:51 UTC (rev 5377)
@@ -65,10 +65,10 @@
return "None"
else:
if os.geteuid() == 0:
- return os.path.join("/etc/tuxdroid", "resource_conf")
+ return os.path.join("/etc/tuxdroid", "resources_conf")
else:
h = os.getenv("HOME")
- path = os.path.join(h, ".tuxdroid", "resource_conf")
+ path = os.path.join(h, ".tuxdroid", "resources_conf")
if not os.path.isdir(path):
os.makedirs(path, mode=0755)
return path
|