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



commit 460dd564ed48c33be8c32e26e274e2a6c2711f71
Author: Michael Whapples <mwhapples aim com>
Date:   Sun Oct 17 15:52:06 2010 +0200

    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 dd118bc..78d3948 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]