[orca] Fix a missed Python 2ism in the logger
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca] Fix a missed Python 2ism in the logger
- Date: Wed, 27 Nov 2013 17:26:22 +0000 (UTC)
commit 8aae033da121f2b81bc36c4fe8a9fc3212d97acb
Author: Joanmarie Diggs <jdiggs igalia com>
Date: Wed Nov 27 12:25:36 2013 -0500
Fix a missed Python 2ism in the logger
src/orca/logger.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/orca/logger.py b/src/orca/logger.py
index 0530d97..d5bf6ad 100644
--- a/src/orca/logger.py
+++ b/src/orca/logger.py
@@ -46,7 +46,7 @@ class Logger:
debug.debugFile.close()
debug.debugFile = None
if debugFile:
- debug.debugFile = open('%s.debug' % debugFile, 'w', 0)
+ debug.debugFile = open('%s.debug' % debugFile, 'w')
debug.debugLevel = debugLevel
def setLogFile(self, logFile):
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]