~chicharreros/magicicada-protocol/1.0

« back to all changes in this revision

Viewing changes to ubuntuone/storageprotocol/sharersp.py

  • Committer: Magicicada Bot
  • Author(s): Natalia
  • Date: 2018-04-08 19:46:34 UTC
  • mfrom: (169.1.1 update-copyright-headers)
  • Revision ID: magicicada_bot-20180408194634-ydg0ytcwmo683l2z
[r=nataliabidart] - Added proper copyright notices and coding headers.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# ubuntuone.storageprotocol.sharersp.py -
2
 
#           provides a handy class to use Shares
3
 
#
4
 
# Author: Facundo Batista <facundo@canonical.com>
5
 
#         Guillermo Gonzalez <guillermo.gonzalez@canonical.com>
 
1
# -*- coding: utf-8 -*-
6
2
#
7
3
# Copyright 2009-2012 Canonical Ltd.
 
4
# Copyright 2015-2018 Chicharreros (https://launchpad.net/~chicharreros)
8
5
#
9
6
# This program is free software: you can redistribute it and/or modify it
10
7
# under the terms of the GNU Affero General Public License version 3,
30
27
# version.  If you delete this exception statement from all source
31
28
# files in the program, then also delete it here.
32
29
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
30
 
33
31
"""A handy class to use Shares."""
34
32
 
35
33
import uuid
36
34
 
37
35
from ubuntuone.storageprotocol import volumes
38
 
# Disable this warning, as we define several things outside __init__ here
39
 
# pylint: disable=W0201
40
36
 
41
37
 
42
38
class ShareResponse(object):