add a note to svn users

This commit is contained in:
Dimitur Kirov 2006-10-11 18:27:55 +00:00
parent 2a2c358cf9
commit 6d1097f1e2
1 changed files with 7 additions and 1 deletions

View File

@ -25,7 +25,13 @@ import config
from contacts import Contacts
from events import Events
import defs
try:
import defs
except ImportError:
print >> sys.stderr, '''defs.py is missing!
If you start gajim from svn, do:
$ sh autogen.sh'''
sys.exit(1)
interface = None # The actual interface (the gtk one for the moment)
config = config.Config()