X-Git-Url: https://mudpy.org/gitweb?p=mudpy.git;a=blobdiff_plain;f=lib%2Fmudpy%2F__init__.py;h=8e077f70c584fcaea96bff69f71afb7178e8206e;hp=f6d3fc85bfe6dafb8f1abadfad24b61b169eadfe;hb=6d5ab6d7121d6e249c23cab0257c7c9d8d247e70;hpb=45860f93b7e1c505359917f1ed90562a0b0d31ff diff --git a/lib/mudpy/__init__.py b/lib/mudpy/__init__.py index f6d3fc8..8e077f7 100644 --- a/lib/mudpy/__init__.py +++ b/lib/mudpy/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """Core modules package for the mudpy engine.""" -# Copyright (c) 2004-2011 Jeremy Stanley . Permission +# Copyright (c) 2004-2012 Jeremy Stanley . Permission # to use, copy, modify, and distribute this software is granted under # terms provided in the LICENSE file distributed with this software. @@ -22,7 +22,7 @@ def load(): # must not have been, so import it now except NameError: - exec("import %s" % module) + exec("import mudpy.%s" % module) # load the modules contained in this package modules = ["data", "misc", "password", "telnet"]