Skip to content

Commit

Permalink
Double quotes for docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
alexis-via committed Dec 18, 2015
1 parent 49d5fc8 commit f65056d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sale_validity/model/sale_order.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,11 @@ def _default_date_validity(self, cr, uid, context=None):
}

def copy(self, cr, uid, id, default=None, context=None):
'''
"""
By default, date_order is set to today on copy()
cf addons/sale/sale.py. So we set date_validity to
its default value on copy()
'''
"""
if default is None:
default = {}
default['date_validity'] = self._default_date_validity(
Expand Down

0 comments on commit f65056d

Please sign in to comment.