Skip to content

Commit

Permalink
[REF] ir_qweb: remove debug in AssetsBundle init signature
Browse files Browse the repository at this point in the history
It's not used
  • Loading branch information
sle-odoo committed Oct 20, 2015
1 parent 6a452b5 commit 1e27b89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openerp/addons/base/ir/ir_qweb.py
Original file line number Diff line number Diff line change
Expand Up @@ -1104,7 +1104,7 @@ class AssetsBundle(object):
rx_preprocess_imports = re.compile("""(@import\s?['"]([^'"]+)['"](;?))""")
rx_css_split = re.compile("\/\*\! ([a-f0-9-]+) \*\/")

def __init__(self, xmlid, debug=False, cr=None, uid=None, context=None, registry=None):
def __init__(self, xmlid, cr=None, uid=None, context=None, registry=None):
self.xmlid = xmlid
self.cr = request.cr if cr is None else cr
self.uid = request.uid if uid is None else uid
Expand Down

0 comments on commit 1e27b89

Please sign in to comment.