From 3838f09c61cdc3ee14844e229e0767261f020797 Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Wed, 20 Jul 2005 20:19:27 +0000 Subject: [PATCH] True/False instaed of 1/0 --- src/common/GnuPG.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/GnuPG.py b/src/common/GnuPG.py index 27828b89b..4cd57acb8 100644 --- a/src/common/GnuPG.py +++ b/src/common/GnuPG.py @@ -19,7 +19,7 @@ from tempfile import * -USE_GPG = 1 +USE_GPG = True try: import GnuPGInterface # Debian package doesn't distribute 'our' file @@ -27,7 +27,7 @@ except ImportError: try: from common import GnuPGInterface # use 'our' file except ImportError: - USE_GPG = 0 # user can't do OpenGPG only if he removed the file! + USE_GPG = False # user can't do OpenGPG only if he removed the file! else: class GnuPG(GnuPGInterface.GnuPG):