offlineimap.version is no more.

This fixes some leftover of 0b5b38d298.

Signed-off-by: Thomas Schwinge <thomas@schwinge.name>
Signed-off-by: Nicolas Sebrecht <nicolas.s-dev@laposte.net>
This commit is contained in:
Thomas Schwinge 2011-01-25 12:22:26 +01:00 committed by Nicolas Sebrecht
parent 69c1b07bc7
commit fa60f3f9b7
3 changed files with 4 additions and 4 deletions

View File

@ -15,10 +15,10 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
import offlineimap.version
import urllib, sys, re, time, traceback, threading, thread
from UIBase import UIBase
from threading import *
import offlineimap
protocol = '6.0.0'
@ -173,7 +173,7 @@ class MachineUI(UIBase):
s.outputlock.release()
def init_banner(s):
s._printData('initbanner', offlineimap.version.banner)
s._printData('initbanner', offlineimap.banner)
def callhook(s, msg):
s._printData('callhook', msg)

View File

@ -16,10 +16,10 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
import offlineimap.version
import re, time, sys, traceback, threading, thread
from StringIO import StringIO
from Queue import Empty
import offlineimap
debugtypes = {'imap': 'IMAP protocol debugging',
'maildir': 'Maildir repository debugging',

View File

@ -24,7 +24,7 @@
from distutils.core import setup
import offlineimap.version
import offlineimap
setup(name = "offlineimap",
version = offlineimap.__version__,