[orca/gnome-2-32] Fix for bug #631544 - Orca crashes at GDM login screen if GDM's .local/share/orca directory does not



commit 60fff41767749544eea6679bb2bea451e7549327
Author: Michael Whapples <mwhapples aim com>
Date:   Sun Oct 17 13:52:06 2010 +0000

    Fix for bug #631544 - Orca crashes at GDM login screen if GDM's .local/share/orca directory does not exist

 src/orca/orca.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/orca/orca.py b/src/orca/orca.py
index 6c9e72a..6623a3c 100644
--- a/src/orca/orca.py
+++ b/src/orca/orca.py
@@ -2166,7 +2166,7 @@ def main():
     oldUserPrefsDir = os.path.join(os.environ["HOME"], ".orca")
 
     if not os.path.exists(userPrefsDir):
-        os.mkdir(userPrefsDir)
+        os.makedirs(userPrefsDir)
 
     for baseDirName, dirNames, fileNames in os.walk(oldUserPrefsDir):
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]