~sylvain-pineau/checkbox-core/bug983035

« back to all changes in this revision

Viewing changes to bin/checkbox-convert

  • Committer: Marc Tardif
  • Date: 2012-04-12 18:58:39 UTC
  • Revision ID: marc.tardif@canonical.com-20120412185839-5lxr7972gntlpl2z
Added journal component.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/python
 
2
#
 
3
# Copyright (c) 2012 Canonical
 
4
#
 
5
# This file is part of Checkbox.
 
6
#
 
7
# Storm is free software; you can redistribute it and/or modify
 
8
# it under the terms of the GNU Lesser General Public License as
 
9
# published by the Free Software Foundation; either version 2.1 of
 
10
# the License, or (at your option) any later version.
 
11
#
 
12
# Storm is distributed in the hope that it will be useful,
 
13
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
# GNU Lesser General Public License for more details.
 
16
#
 
17
# You should have received a copy of the GNU Lesser General Public License
 
18
# along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
import sys
 
21
 
 
22
try:
 
23
    import _preamble
 
24
except ImportError:
 
25
    sys.exc_clear()
 
26
 
 
27
from checkbox.scripts import convert
 
28
 
 
29
 
 
30
convert.run()