/mandos/trunk

To get this branch, use:
bzr branch http://bzr.recompile.se/loggerhead/mandos/trunk

« back to all changes in this revision

Viewing changes to mandos

  • Committer: Teddy Hogeborn
  • Date: 2011-02-27 17:00:41 UTC
  • Revision ID: teddy@fukt.bsnet.se-20110227170041-2b7h5ftbexm1uotk
* debian/mandos-client.postrm (purge): Bug fix: update initramfs also
                                       on purge.
* mandos (MultiprocessingMixInWithPipe.add_pipe): raise
                                                  NotImplementedError.
  (string_to_delta): Don't use message attribute of exception.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1408
1408
 
1409
1409
    def add_pipe(self, parent_pipe):
1410
1410
        """Dummy function; override as necessary"""
1411
 
        pass
 
1411
        raise NotImplementedError
1412
1412
 
1413
1413
class IPv6_TCPServer(MultiprocessingMixInWithPipe,
1414
1414
                     socketserver.TCPServer, object):
1613
1613
            else:
1614
1614
                raise ValueError(u"Unknown suffix %r" % suffix)
1615
1615
        except (ValueError, IndexError), e:
1616
 
            raise ValueError(e.message)
 
1616
            raise ValueError(*(e.args))
1617
1617
        timevalue += delta
1618
1618
    return timevalue
1619
1619