# HG changeset patch # User Mads Kiilerich # Date 2019-08-03 22:55:46 # Node ID cf0352934bdf9328f57cd29ee1144cde9f6f4e7e # Parent 2d2fcf8f42213b185850dab5e0862dd0e836cb29 kallithea: drop long forgotten kallithea.brand warning diff --git a/kallithea/__init__.py b/kallithea/__init__.py --- a/kallithea/__init__.py +++ b/kallithea/__init__.py @@ -44,14 +44,6 @@ CONFIG = {} # Linked module for extensions EXTENSIONS = {} -try: - import kallithea.brand -except ImportError: - pass -else: - assert False, 'Database rebranding is no longer supported; see README.' - - __version__ = '.'.join(str(each) for each in VERSION) __platform__ = platform.system() __license__ = 'GPLv3'