]> git.ipfire.org Git - thirdparty/kmod.git/blame - libkmod/python/kmod/__init__.py
configure: Check that provided paths are absolute
[thirdparty/kmod.git] / libkmod / python / kmod / __init__.py
CommitLineData
c8b5c51e 1# Copyright (C) 2012 W. Trevor King <wking@tremily.us>
f7c62154 2#
c8b5c51e 3# This file is part of python-kmod.
f7c62154 4#
c8b5c51e
TK
5# python-kmod is free software: you can redistribute it and/or modify it under
6# the terms of the GNU Lesser General Public License version 2.1 as published
7# by the Free Software Foundation.
8#
9# python-kmod is distributed in the hope that it will be useful, but WITHOUT
10# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
11# FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
12# details.
f7c62154 13#
c8b5c51e
TK
14# You should have received a copy of the GNU Lesser General Public License
15# along with python-kmod. If not, see <http://www.gnu.org/licenses/>.
f7c62154
TK
16
17"Libkmod -- Python interface to kmod API."
18
19from .version import __version__
17b69ada
GR
20try:
21 from .kmod import Kmod
22except ImportError:
23 # this is a non-Linux platform
24 pass