core folder is now named Core (we can't have a core folder to build a debian package)

This commit is contained in:
Yann Leboulanger 2004-12-19 19:40:58 +00:00
parent e5b03abf2e
commit ac3bbc7056
3 changed files with 2 additions and 2 deletions

View file

@ -21,7 +21,7 @@ import logging
logging.basicConfig() logging.basicConfig()
import common import common
import core import Core
from common import i18n from common import i18n
i18n.init() i18n.init()
@ -48,5 +48,5 @@ for o, a in opts:
usage() usage()
sys.exit() sys.exit()
core.core.start(mode) Core.core.start(mode)
print _("Core Stopped") print _("Core Stopped")