mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
13 lines
No EOL
337 B
Python
13 lines
No EOL
337 B
Python
class VersioningBase(object):
|
|
|
|
def get_version(self, source_files):
|
|
raise NotImplementedError
|
|
|
|
def needs_update(self, output_file, source_files, version):
|
|
raise NotImplementedError
|
|
|
|
class VersioningError(Exception):
|
|
"""
|
|
This exception is raised when version creation fails
|
|
"""
|
|
pass |