~ubuntu-branches/ubuntu/trusty/coherence/trusty

« back to all changes in this revision

Viewing changes to coherence/extern/galleryremote/gallery.py

  • Committer: Bazaar Package Importer
  • Author(s): Charlie Smotherman
  • Date: 2010-06-30 22:43:12 UTC
  • mfrom: (3.2.12 sid)
  • Revision ID: james.westby@ubuntu.com-20100630224312-0yfxnxrmtcjd0n2c
Tags: 0.6.6.2-5
* debian/rules made use of ${CURDIR} variable in remove statement.
* debian/install added README install statement. Closes: #572801
* Removed debian/coherence.docs as it was not installing README into 
  /usr/share/doc/python-coherence/.

Show diffs side-by-side

added added

removed removed

Lines of Context:
137
137
 
138
138
        # make sure the 1st line is #__GR2PROTO__
139
139
        if string.find( line, '#__GR2PROTO__' ) == -1:
140
 
            raise "Bad response: \r\n" + response
 
140
            raise Exception("Bad response: \r\n" + response)
141
141
 
142
142
        resDict = {}
143
143