add a note to svn users
This commit is contained in:
parent
2a2c358cf9
commit
6d1097f1e2
|
@ -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()
|
||||
|
|
Loading…
Reference in New Issue