Removed dep on profile
Keywords: (jgoerzen@complete.org--projects/offlineimap--head--1.0--patch-8)
This commit is contained in:
parent
240585f2cc
commit
c42ad3ae55
12
ChangeLog
12
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 <jgoerzen@complete.org> 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 <jgoerzen@complete.org> patch-7
|
||||
|
||||
Summary:
|
||||
|
7
debian/changelog
vendored
7
debian/changelog
vendored
@ -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 <jgoerzen@complete.org> 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
|
||||
|
@ -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())
|
||||
|
Loading…
Reference in New Issue
Block a user