diff --git a/commands/general.py b/commands/general.py index 710de175c5..85639010eb 100644 --- a/commands/general.py +++ b/commands/general.py @@ -1,4 +1,5 @@ import os, time +import gameconf import settings import functions_general import functions_db diff --git a/gameconf.py b/gameconf.py index b4b50afdcf..b72a71ca3a 100644 --- a/gameconf.py +++ b/gameconf.py @@ -22,7 +22,7 @@ def get_configvalue(configname): try: return ConfigValue.objects.get(conf_key=configname).conf_value except: - functions_genera.log_errmsg("Unable to get config value for %s:\n%s" % (configname, (format_exc()))) + functions_general.log_errmsg("Unable to get config value for %s:\n%s" % (configname, (format_exc()))) def set_configvalue(configname, newvalue): """