~gnuoy/charms/trusty/neutron-api/1422440

« back to all changes in this revision

Viewing changes to hooks/charmhelpers/core/templating.py

  • Committer: james.page at ubuntu
  • Date: 2014-12-15 09:14:03 UTC
  • mfrom: (63.1.8 neutron-api)
  • Revision ID: james.page@ubuntu.com-20141215091403-af7ic1lxnnjsh4zu
[corey.bryant,r=james-page] Sort out charmhelpers issues.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
from charmhelpers.core import hookenv
5
5
 
6
6
 
7
 
def render(source, target, context, owner='root', group='root', perms=0444, templates_dir=None):
 
7
def render(source, target, context, owner='root', group='root',
 
8
           perms=0o444, templates_dir=None):
8
9
    """
9
10
    Render a template.
10
11