From 9f486bfb6b7f34d99363d6db254a36fe07d7106c Mon Sep 17 00:00:00 2001
From: Piotr Maslanka <piotr.maslanka@henrietta.com.pl>
Date: Sat, 7 Oct 2017 11:14:56 +0200
Subject: [PATCH] override me

---
 satella/coding/structures.py | 2 +-
 setup.py                     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/satella/coding/structures.py b/satella/coding/structures.py
index 42a118f4..001afc2d 100644
--- a/satella/coding/structures.py
+++ b/satella/coding/structures.py
@@ -263,7 +263,7 @@ class TimeBasedHeap(Heap):
         Items will be removed from heap
         :return: list of tuple(timestamp::float, item)
         """
-        return list(self.pop_less_than(timestamp))
+        return list(Heap.pop_less_than(self, timestamp))
 
     def remove(self, item):
         """
diff --git a/setup.py b/setup.py
index 478d3482..95ce08f2 100644
--- a/setup.py
+++ b/setup.py
@@ -2,7 +2,7 @@
 from setuptools import setup, find_packages
 
 setup(name='satella',
-      version='2.0.11rc1',
+      version='2.0.11',
       description=u'Utilities for writing servers in Python',
       author=u'Piotr Maślanka',
       author_email='piotrm@smok.co',
-- 
GitLab