Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVincent Hanquez <tab@snarc.org>2003-10-22 22:45:13 +0400
committerVincent Hanquez <tab@snarc.org>2003-10-22 22:45:13 +0400
commitc0f51fdd1d3f93b15f8606fbdf2df2ea841115fe (patch)
treee0759126ad3fc1f45377b7d095fc52d0d89bad4f /runCore.py
Initial revision
Diffstat (limited to 'runCore.py')
-rw-r--r--runCore.py30
1 files changed, 30 insertions, 0 deletions
diff --git a/runCore.py b/runCore.py
new file mode 100644
index 000000000..143948793
--- /dev/null
+++ b/runCore.py
@@ -0,0 +1,30 @@
+#!/usr/bin/env python
+## runCore.py
+##
+## Gajim Team:
+## - Yann Le Boulanger <asterix@crans.org>
+## - Vincent Hanquez <tab@tuxfamily.org>
+## - David Ferlier <krp@yazzy.org>
+##
+## Copyright (C) 2003 Gajim Team
+##
+## This program is free software; you can redistribute it and/or modify
+## it under the terms of the GNU General Public License as published
+## by the Free Software Foundation; version 2 only.
+##
+## This program is distributed in the hope that it will be useful,
+## but WITHOUT ANY WARRANTY; without even the implied warranty of
+## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+## GNU General Public License for more details.
+##
+
+import logging
+logging.basicConfig()
+import sys
+
+sys.path.append("..")
+
+import common
+import core
+
+core.core.start()