Commit 960a61dc authored by Jérome Perrin's avatar Jérome Perrin

raise NotImplementedError, not NotImplemented


git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@10441 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 8e110deb
...@@ -84,5 +84,5 @@ class Invoice(AccountingTransaction): ...@@ -84,5 +84,5 @@ class Invoice(AccountingTransaction):
Permissions.AccessContentsInformation, 'getTotalNetPrice') Permissions.AccessContentsInformation, 'getTotalNetPrice')
def getTotalNetPrice(self): def getTotalNetPrice(self):
""" Returns the total net price for this invoice """ """ Returns the total net price for this invoice """
raise NotImplemented raise NotImplementedError
return self.Invoice_zGetTotalNetPrice() return self.Invoice_zGetTotalNetPrice()
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment