From c42ad3ae55405a410f9e501b37a67da369396883 Mon Sep 17 00:00:00 2001 From: John Goerzen Date: Thu, 10 Feb 2005 05:37:33 +0100 Subject: [PATCH] Removed dep on profile Keywords: (jgoerzen@complete.org--projects/offlineimap--head--1.0--patch-8) --- ChangeLog | 12 ++++++++++++ debian/changelog | 7 +++++++ offlineimap/threadutil.py | 3 ++- 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 106f9f7..531a575 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,18 @@ # arch-tag: automatic-ChangeLog--jgoerzen@complete.org--projects/offlineimap--head--1.0 # +2005-02-09 22:37:33 GMT John Goerzen patch-8 + + Summary: + Removed dep on profile + Revision: + offlineimap--head--1.0--patch-8 + + + modified files: + ChangeLog debian/changelog offlineimap/threadutil.py + + 2005-01-17 14:07:35 GMT John Goerzen patch-7 Summary: diff --git a/debian/changelog b/debian/changelog index a54a9cc..79f38bc 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +offlineimap (4.0.9) unstable; urgency=low + + * Removed dep on profile.py due to DFSG-free issues with it. + Closes: #294479. + + -- John Goerzen Wed, 9 Feb 2005 16:34:50 -0600 + offlineimap (4.0.8) unstable; urgency=low * Added code to limit number of messages that get their flags set at diff --git a/offlineimap/threadutil.py b/offlineimap/threadutil.py index 87b8973..1818cf8 100644 --- a/offlineimap/threadutil.py +++ b/offlineimap/threadutil.py @@ -18,7 +18,7 @@ from threading import * from StringIO import StringIO -import sys, traceback, thread, profile +import sys, traceback, thread from offlineimap.ui import UIBase # for getglobalui() profiledir = None @@ -152,6 +152,7 @@ class ExitNotifyThread(Thread): if not profiledir: # normal case Thread.run(self) else: + import profile prof = profile.Profile() try: prof = prof.runctx("Thread.run(self)", globals(), locals()) -- 2.39.2