Skip to content

Commit 23722a3

Browse files
Merge pull request pandas-dev#57 from bmoscon/master
Remove extraneous print and fix changelog
2 parents 44f13fe + cff4807 commit 23722a3

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

CHANGES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
### 1.15 (2015-11-25)
55

6-
* Feature: get_data_info API added to version_store.
6+
* Feature: get_info API added to version_store.
77

88
### 1.14 (2015-11-25)
99
### 1.12 (2015-11-12)

arctic/store/version_store.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,6 @@ def get_info(self, symbol, as_of=None):
354354
dictionary of the information (specific to the type of data)
355355
"""
356356
version = self._read_metadata(symbol, as_of=as_of, read_preference=None)
357-
print version
358357
handler = self._read_handler(version, symbol)
359358
if handler and hasattr(handler, 'get_info'):
360359
return handler.get_info(version)

0 commit comments

Comments
 (0)