If you're using Python 3.1, super is new and improved. It figures out the class and instance arguments for you. So you should call super without arguments:
class Child(Base):
def __init__(self, value, something_else):
super().__init__(value)
self.something_else = something_else
...