12486.1.8
by Jeroen Vermeulen
Script to populate DistroSeriesDifference. |
1 |
#!/usr/bin/python -S
|
2 |
#
|
|
3 |
# Copyright 2011 Canonical Ltd. This software is licensed under the
|
|
4 |
# GNU Affero General Public License version 3 (see the file LICENSE).
|
|
5 |
||
6 |
__metaclass__ = type |
|
7 |
||
8 |
import _pythonpath |
|
9 |
||
10 |
from lp.registry.scripts.populate_distroseriesdiff import ( |
|
11 |
PopulateDistroSeriesDiff, |
|
12 |
)
|
|
13 |
||
14 |
||
15 |
if __name__ == '__main__': |
|
16 |
PopulateDistroSeriesDiff('populate-distroseriesdiff').run() |