mirror of
https://github.com/virt-manager/virt-manager.git
synced 2024-12-23 17:34:21 +03:00
48e32b429d
The copyright headers in every file were chjanged in this previous commit
commit b6dcee8eb7
Author: Cole Robinson <crobinso@redhat.com>
Date: Tue Mar 20 15:00:02 2018 -0400
Use consistent and minimal license header for every file
Where before this they said "
"either version 2 of the License, or (at your option) any later version."
Now they just say
"GNU GPLv2"
This fixes it to say "GNU GPLv2 or later" again.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
29 lines
895 B
Python
29 lines
895 B
Python
# Copyright (C) 2018 Red Hat, Inc.
|
|
#
|
|
# This work is licensed under the GNU GPLv2 or later.
|
|
# See the COPYING file in the top-level directory.
|
|
|
|
|
|
from .char import DeviceChannel, DeviceConsole, DeviceParallel, DeviceSerial
|
|
from .controller import DeviceController
|
|
from .device import Device
|
|
from .disk import DeviceDisk
|
|
from .filesystem import DeviceFilesystem
|
|
from .graphics import DeviceGraphics
|
|
from .hostdev import DeviceHostdev
|
|
from .input import DeviceInput
|
|
from .interface import DeviceInterface
|
|
from .memballoon import DeviceMemballoon
|
|
from .memory import DeviceMemory
|
|
from .panic import DevicePanic
|
|
from .smartcard import DeviceSmartcard
|
|
from .sound import DeviceSound
|
|
from .redirdev import DeviceRedirdev
|
|
from .rng import DeviceRng
|
|
from .tpm import DeviceTpm
|
|
from .video import DeviceVideo
|
|
from .watchdog import DeviceWatchdog
|
|
|
|
|
|
__all__ = [l for l in locals() if l.startswith("Device")]
|