docs cleanup

This commit is contained in:
2016-02-07 10:56:29 -05:00
parent d6a7832e60
commit 039272b274
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -103,7 +103,7 @@ Importing Data
--------------
Creating a :class:`tablib.Dataset` object by importing a pre-existing file is simple. ::
imported_data = tablib.import_set(open('data.csv').read())
imported_data = Dataset().load(open('data.csv').read())
This detects what sort of data is being passed in, and uses an appropriate formatter to do the import. So you can import from a variety of different file types.