summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeth M Morton <seth.m.morton@gmail.com>2016-05-20 18:41:57 -0700
committerSeth M Morton <seth.m.morton@gmail.com>2016-05-20 18:41:57 -0700
commita2a4f279440cf37d0160f97e5c05b1a233e50daf (patch)
tree08110050faad261f9d6be30622fdddb918b1315e
parenta501ddf6cfdbbf4e8e5d406c822aaeb4d8e777bb (diff)
downloadnatsort-a2a4f279440cf37d0160f97e5c05b1a233e50daf.tar.gz
Fixed bug in __all__ object.
A comma was accidentally missing, so it caused an error if one did "from natsort import *". It's a bit refreshing that no one has ever reported this as an error, implying no one does it.
-rw-r--r--natsort/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/natsort/__init__.py b/natsort/__init__.py
index edb435f..e4c9daf 100644
--- a/natsort/__init__.py
+++ b/natsort/__init__.py
@@ -31,7 +31,7 @@ __all__ = [
'natsort_key',
'natsort_keygen',
'natsorted',
- 'versorted'
+ 'versorted',
'humansorted',
'realsorted',
'index_natsorted',