Skip to content

Commit

Permalink
DatabaseFeatures constructor expects a connection object
Browse files Browse the repository at this point in the history
  • Loading branch information
Keith Barrette committed Jan 25, 2012
1 parent 1ab45e5 commit 073b114
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mysql_oursql/standard/base.py
Expand Up @@ -127,7 +127,7 @@ def __init__(self, *args, **kwargs):
super(DatabaseWrapper, self).__init__(*args, **kwargs)

self.server_version = None
self.features = DatabaseFeatures()
self.features = DatabaseFeatures(self)
self.ops = DatabaseOperations()
self.client = DatabaseClient(self)
self.creation = DatabaseCreation(self)
Expand Down

0 comments on commit 073b114

Please sign in to comment.