~ubuntu-branches/ubuntu/saucy/ubuntuone-storage-protocol/saucy-proposed

« back to all changes in this revision

Viewing changes to ubuntuone/storageprotocol/volumes.py

  • Committer: Package Import Robot
  • Author(s): Rodney Dawes
  • Date: 2012-12-04 15:38:02 UTC
  • mfrom: (1.1.45)
  • Revision ID: package-import@ubuntu.com-20121204153802-lc7u0kbvig28nh42
Tags: 4.1.0-0ubuntu1
* New upstream release.
  - Ignore and fix some new errors from the pep8 checker script.
* debian/watch:
  - Updated to use new stable series for Ubuntu 13.04.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
# these are valid, pylint: disable=C0103
38
38
_direction_prot2nice = {
39
39
    protocol_pb2.Shares.FROM_ME: "from_me",
40
 
    protocol_pb2.Shares.TO_ME:   "to_me",
 
40
    protocol_pb2.Shares.TO_ME: "to_me",
41
41
}
42
42
_direction_nice2prot = dict((y, x) for x, y in _direction_prot2nice.items())
43
43