Fix base class argument count

This commit is contained in:
Roberto Rosario
2014-11-02 21:26:24 -04:00
parent ef213001e1
commit d65cd68aec

View File

@@ -14,5 +14,5 @@ class ConverterBase(object):
def get_available_transformations(self):
raise NotImplementedError("Your %s class has not defined a get_available_transformations() method, which is required." % self.__class__.__name__)
def get_page_count(self):
def get_page_count(self, input_filepath):
raise NotImplementedError("Your %s class has not defined a get_page_count() method, which is required." % self.__class__.__name__)