--- roundup-1.4.17.orig/roundup/instance.py 2010-10-21 20:13:37.000000000 +0100 +++ roundup-1.4.17/roundup/instance.py 2011-06-21 21:42:24.531965428 +0100 @@ -30,6 +30,7 @@ import os import sys +import __builtin__ from roundup import configuration, mailgw from roundup import hyperdb, backends, actions from roundup.cgi import client, templating @@ -86,7 +87,7 @@ sys.path.remove(libdir) def get_backend_name(self): - o = __builtins__['open'] + o = __builtin__.open f = o(os.path.join(self.config.DATABASE, 'backend_name')) name = f.readline().strip() f.close()