diff options
author | martinko | 2013-08-09 14:01:16 +0000 |
---|---|---|
committer | martinko | 2013-08-09 14:01:16 +0000 |
commit | 344d063d4e61bdd382d9e1977964fa1fe6363991 (patch) | |
tree | 0bd7141f24ccaa9cdaf2120006263bfe47d4f36a | |
parent | 9e5df3c197b0dfde6fab31481c4c6a30f5f8ba28 (diff) |
v3.1.5
-rw-r--r-- | INSTALL | 2 | ||||
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | python/londiste/handlers/shard.py | 2 |
4 files changed, 4 insertions, 4 deletions
@@ -52,7 +52,7 @@ suitable for installation. The following additional packages are needed to build the debian package: devscripts autotools-dev python-all-dev python-support xmlto asciidoc - libpq-dev postgresql-server-dev-all + libevent-dev libpq-dev postgresql-server-dev-all Then build: @@ -1,5 +1,5 @@ -2013-07-22 - SkyTools 3.1.5 - "" +2013-07-31 - SkyTools 3.1.5 - "Caution, Blind Man Driving" = Features = diff --git a/debian/changelog b/debian/changelog index 0bc9b6ee..b073d363 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,7 +2,7 @@ skytools3 (3.1.5) experimental; urgency=low * v3.1.5 - -- martinko <[email protected]> Mon, 22 Jul 2013 16:17:18 +0200 + -- martinko <[email protected]> Wed, 31 Jul 2013 14:15:16 +0200 skytools3 (3.1.4) experimental; urgency=low diff --git a/python/londiste/handlers/shard.py b/python/londiste/handlers/shard.py index aea8a39d..329c6cf4 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): - __doc__ = '\n'.join(["Deprecated compat name for shard handler."] + __doc__.splitlines()[1:]) + __doc__ = "Deprecated compat name for shard handler.\n" + __doc__.split('\n',1)[1] handler_name = 'part' # register handler class |