Skip to content

Commit

Permalink
Branch merge.
Browse files Browse the repository at this point in the history
  • Loading branch information
hover2pi committed Mar 14, 2016
2 parents b8ca895 + dea5627 commit 010f374
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To start using astrodbkit, launch iPython, import the module, then initialize a

```
from astrodbkit import astrodb
db = astrodb.get_db(dbpath)
db = astrodb.Database(dbpath)
```

[Read the full documentation here.](http://astrodbkit.readthedocs.org/en/latest/index.html)
Expand Down
2 changes: 2 additions & 0 deletions astrodbkit/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from pkg_resources import get_distribution
__version__ = get_distribution('astrodbkit').version
2 changes: 1 addition & 1 deletion astrodbkit/astrodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -917,7 +917,7 @@ def _explicit_query(self, SQL):

elif 'pragma' in SQL.lower():
columns = ['cid','name','type','notnull','dflt_value','pk']

return SQL, columns

# ==============================================================================================================================================
Expand Down

0 comments on commit 010f374

Please sign in to comment.