summaryrefslogtreecommitdiffstats
path: root/src/lib/Bcfg2/Server/SchemaUpdater/Changes/1_0_x.py
blob: ff4c24328bb0a8e9a9fb826f8940bae9fddd054c (plain)
1
2
3
4
5
6
7
8
9
10
11
"""
1_0_x.py

This file should contain updates relevant to the 1.0.x branches ONLY.
The updates() method must be defined and it should return an Updater object
"""
from Bcfg2.Server.SchemaUpdater import UnsupportedUpdate

def updates():
    return UnsupportedUpdate("1.0", 10)