From 28f914463b4ca0ca9c25d8d5f2f512cdcdb8bde3 Mon Sep 17 00:00:00 2001 From: mdipierro Date: Thu, 4 Oct 2012 20:17:12 -0500 Subject: [PATCH] removed depredation working, thanks Niphlod --- VERSION | 2 +- gluon/dal.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 68ec7bfc..c98d9502 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -Version 2.0.9 (2012-10-04 20:10:46) dev +Version 2.0.9 (2012-10-04 20:17:03) dev diff --git a/gluon/dal.py b/gluon/dal.py index bd67b1f5..ecfbdbef 100644 --- a/gluon/dal.py +++ b/gluon/dal.py @@ -6599,7 +6599,7 @@ class DAL(object): if args or kwargs: raise RuntimeError, 'Cannot duplicate a Singleton' except KeyError: - db = super(DAL, cls).__new__(cls, uri, *args, **kwargs) + db = super(DAL, cls).__new__(cls) THREAD_LOCAL.db_instances[singleton_code] = db db._singleton_code = singleton_code return db