~ubuntu-branches/ubuntu/raring/exabgp/raring

« back to all changes in this revision

Viewing changes to lib/exabgp/bgp/message/notification.py

  • Committer: Package Import Robot
  • Author(s): Henry-Nicolas Tourneur
  • Date: 2013-01-02 11:42:00 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20130102114200-heowva4yrqiiukc5
Tags: 3.1.1-1

* New upstream release
* Closes: #687134 debconf abuse, notice of software behavior take places under
  NEWS.Debian, not in a debconf screen, information moved accordingly.
* Closes: #693338 Japanese translation removed since debconf template is out.
* Closes: #697178 Russian translation removed since debconf template is out.
* Closes: #689533 UCF-based conf added. 
  No more manual changes to exabgp.env, thanks to Federico Ceratto.
          

Show diffs side-by-side

added added

removed removed

Lines of Context:
88
88
                return self.new(ord(data[0]),ord(data[1]),data[2:])
89
89
 
90
90
        def __str__ (self):
91
 
                return "%s / %s%s" %  (
 
91
                return "%s / %s%s" % (
92
92
                        self._str_code.get(self.code,'unknown error'),
93
93
                        self._str_subcode.get((self.code,self.subcode),'unknow reason'),
94
94
                        '%s' % ('/ %s' % self.data if self.data else '')