Skip to content

Commit

Permalink
fix #14: Off by default
Browse files Browse the repository at this point in the history
  • Loading branch information
josuebrunel committed Aug 16, 2014
1 parent c69ad06 commit dd6d028
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lokingyql/lokingyql.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def __init__(self, table=None, url=default_url, format='json'):
self.table = table
self.format = format
self._query = None # used to build query when using methods such as <select>, <insert>, ...
self.diagnostics = True # Who knows, someone would like to turn it off
self.diagnostics = False # Who knows, someone would like to turn it ON lol

def __repr__(self):
'''Returns information on the current instance
Expand Down

0 comments on commit dd6d028

Please sign in to comment.