diff options
author | martinko | 2013-07-31 09:21:51 +0000 |
---|---|---|
committer | martinko | 2013-07-31 09:21:51 +0000 |
commit | 08e2f5df6c421b8a0d0244d5b8afa93f9f648cf3 (patch) | |
tree | 5ceccd57ddb8f18d25f05e9d16fdb0268c0a743e | |
parent | 244a132aed5150127d69c52459f6cb5a9660df3f (diff) |
londiste.handlers.shard: fixed incomplete docstring for part handler
-rw-r--r-- | python/londiste/handlers/shard.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/londiste/handlers/shard.py b/python/londiste/handlers/shard.py index 950ac7c6..aea8a39d 100644 --- a/python/londiste/handlers/shard.py +++ b/python/londiste/handlers/shard.py @@ -105,7 +105,7 @@ class ShardHandler (TableHandler): raise Exception('Error loading shard info') class PartHandler (ShardHandler): - """ Deprecated compat name for shard handler. """ + __doc__ = '\n'.join(["Deprecated compat name for shard handler."] + __doc__.splitlines()[1:]) handler_name = 'part' # register handler class |