From ac3bbc7056409171813281e2ada5b72f621d9d56 Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Sun, 19 Dec 2004 19:40:58 +0000
Subject: [PATCH] core folder is now named Core (we can't have a core folder to
 build a debian package)

---
 {core => Core}/__init__.py | 0
 {core => Core}/core.py     | 0
 runCore.py                 | 4 ++--
 3 files changed, 2 insertions(+), 2 deletions(-)
 rename {core => Core}/__init__.py (100%)
 rename {core => Core}/core.py (100%)

diff --git a/core/__init__.py b/Core/__init__.py
similarity index 100%
rename from core/__init__.py
rename to Core/__init__.py
diff --git a/core/core.py b/Core/core.py
similarity index 100%
rename from core/core.py
rename to Core/core.py
diff --git a/runCore.py b/runCore.py
index 658f00a4c6..69dfa5d047 100755
--- a/runCore.py
+++ b/runCore.py
@@ -21,7 +21,7 @@ import logging
 logging.basicConfig()
 
 import common
-import core
+import Core
 
 from common import i18n
 i18n.init()
@@ -48,5 +48,5 @@ for o, a in opts:
 		usage()
 		sys.exit()
 
-core.core.start(mode)
+Core.core.start(mode)
 print _("Core Stopped")
-- 
GitLab