~openstack-charmers/charm-helpers/backup-15.01

« back to all changes in this revision

Viewing changes to charmhelpers/contrib/python/debug.py

  • Committer: Christopher Glass
  • Date: 2015-01-22 06:11:15 UTC
  • mfrom: (278.2.6 change-license-to-lgpl)
  • Revision ID: christopher.glass@canonical.com-20150122061115-48xsq9x6qed9fyo9
Switched license to LGPL after gathering approval from all contributors (directly or through their canonical employment contract). [tribaal, r=hazmat]

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/env python
2
2
# coding: utf-8
3
3
 
 
4
# Copyright 2014-2015 Canonical Limited.
 
5
#
 
6
# This file is part of charm-helpers.
 
7
#
 
8
# charm-helpers is free software: you can redistribute it and/or modify
 
9
# it under the terms of the GNU Lesser General Public License version 3 as
 
10
# published by the Free Software Foundation.
 
11
#
 
12
# charm-helpers is distributed in the hope that it will be useful,
 
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
# GNU Lesser General Public License for more details.
 
16
#
 
17
# You should have received a copy of the GNU Lesser General Public License
 
18
# along with charm-helpers.  If not, see <http://www.gnu.org/licenses/>.
 
19
 
4
20
from __future__ import print_function
5
21
 
6
22
__author__ = "Jorge Niedbalski <jorge.niedbalski@canonical.com>"