[orca] Fix for bug #631544 - Orca crashes at GDM login screen if GDM's .local/share/orca directory does not
- From: Alejandro Leiva <aleiva src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Fix for bug #631544 - Orca crashes at GDM login screen if GDM's .local/share/orca directory does not
- Date: Sun, 17 Oct 2010 13:53:11 +0000 (UTC)
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]