summaryrefslogtreecommitdiff
path: root/virtManager
diff options
context:
space:
mode:
authorDaniel P. Berrangé <berrange@redhat.com>2018-04-04 14:35:41 +0100
committerCole Robinson <crobinso@redhat.com>2018-04-04 16:51:37 -0400
commit48e32b429d0db08aca2b612ec2ff46d0e1b0f36a (patch)
tree094064f4b15c77deb60cdacb19e67524e26b3286 /virtManager
parent24a8b66b35c92bed919a4a6beb7c7fb80e85b3b2 (diff)
downloadvirt-manager-48e32b429d0db08aca2b612ec2ff46d0e1b0f36a.tar.gz
Fix copyright header to specify GPLv2 or later, not GPLv2 only.
The copyright headers in every file were chjanged in this previous commit commit b6dcee8eb7ec4de999058c187162fe4aedef36b4 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>
Diffstat (limited to 'virtManager')
-rw-r--r--virtManager/__init__.py2
-rw-r--r--virtManager/about.py2
-rw-r--r--virtManager/addhardware.py2
-rw-r--r--virtManager/addstorage.py2
-rw-r--r--virtManager/asyncjob.py2
-rw-r--r--virtManager/baseclass.py2
-rw-r--r--virtManager/choosecd.py2
-rw-r--r--virtManager/clone.py2
-rw-r--r--virtManager/config.py2
-rw-r--r--virtManager/connect.py2
-rw-r--r--virtManager/connectauth.py2
-rw-r--r--virtManager/connection.py2
-rw-r--r--virtManager/connmanager.py2
-rw-r--r--virtManager/console.py2
-rw-r--r--virtManager/create.py2
-rw-r--r--virtManager/createinterface.py2
-rw-r--r--virtManager/createnet.py2
-rw-r--r--virtManager/createpool.py2
-rw-r--r--virtManager/createvol.py2
-rw-r--r--virtManager/delete.py2
-rw-r--r--virtManager/details.py2
-rw-r--r--virtManager/domain.py2
-rw-r--r--virtManager/engine.py2
-rw-r--r--virtManager/error.py2
-rw-r--r--virtManager/fsdetails.py2
-rw-r--r--virtManager/gfxdetails.py2
-rw-r--r--virtManager/graphwidgets.py2
-rw-r--r--virtManager/host.py2
-rw-r--r--virtManager/inspection.py2
-rw-r--r--virtManager/interface.py2
-rw-r--r--virtManager/keyring.py2
-rw-r--r--virtManager/libvirtenummap.py2
-rw-r--r--virtManager/libvirtobject.py2
-rw-r--r--virtManager/manager.py2
-rw-r--r--virtManager/mediacombo.py2
-rw-r--r--virtManager/migrate.py2
-rw-r--r--virtManager/module_trace.py2
-rw-r--r--virtManager/netlist.py2
-rw-r--r--virtManager/network.py2
-rw-r--r--virtManager/nodedev.py2
-rw-r--r--virtManager/packageutils.py2
-rw-r--r--virtManager/preferences.py2
-rw-r--r--virtManager/serialcon.py2
-rw-r--r--virtManager/snapshots.py2
-rw-r--r--virtManager/sshtunnels.py2
-rw-r--r--virtManager/storagebrowse.py2
-rw-r--r--virtManager/storagelist.py2
-rw-r--r--virtManager/storagepool.py2
-rw-r--r--virtManager/systray.py2
-rw-r--r--virtManager/uiutil.py2
-rw-r--r--virtManager/viewers.py2
-rw-r--r--virtManager/vmmenu.py2
52 files changed, 52 insertions, 52 deletions
diff --git a/virtManager/__init__.py b/virtManager/__init__.py
index 61199758..454c44c0 100644
--- a/virtManager/__init__.py
+++ b/virtManager/__init__.py
@@ -1,5 +1,5 @@
# Copyright (C) 2006, 2013 Red Hat, Inc.
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
diff --git a/virtManager/about.py b/virtManager/about.py
index 70ca2f61..e8b50c41 100644
--- a/virtManager/about.py
+++ b/virtManager/about.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006, 2013 Red Hat, Inc.
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/addhardware.py b/virtManager/addhardware.py
index b0cdec46..e9bb30ed 100644
--- a/virtManager/addhardware.py
+++ b/virtManager/addhardware.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006-2007, 2012-2015 Red Hat, Inc.
# Copyright (C) 2006 Hugh O. Brock <hbrock@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/addstorage.py b/virtManager/addstorage.py
index 68701eba..91ff1882 100644
--- a/virtManager/addstorage.py
+++ b/virtManager/addstorage.py
@@ -1,6 +1,6 @@
# Copyright (C) 2014 Red Hat, Inc.
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/asyncjob.py b/virtManager/asyncjob.py
index 55511e47..b121570f 100644
--- a/virtManager/asyncjob.py
+++ b/virtManager/asyncjob.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006, 2013 Red Hat, Inc.
# Copyright (C) 2006 Hugh O. Brock <hbrock@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import threading
diff --git a/virtManager/baseclass.py b/virtManager/baseclass.py
index 9ae16117..c26264af 100644
--- a/virtManager/baseclass.py
+++ b/virtManager/baseclass.py
@@ -1,7 +1,7 @@
# Copyright (C) 2010, 2013 Red Hat, Inc.
# Copyright (C) 2010 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/choosecd.py b/virtManager/choosecd.py
index 7ae7b446..5be91c96 100644
--- a/virtManager/choosecd.py
+++ b/virtManager/choosecd.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006, 2013, 2014 Red Hat, Inc.
# Copyright (C) 2006 Hugh O. Brock <hbrock@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/clone.py b/virtManager/clone.py
index 23a95e61..0615de89 100644
--- a/virtManager/clone.py
+++ b/virtManager/clone.py
@@ -1,7 +1,7 @@
# Copyright (C) 2009, 2013 Red Hat, Inc.
# Copyright (C) 2009 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/config.py b/virtManager/config.py
index 1b7bddc2..c4272149 100644
--- a/virtManager/config.py
+++ b/virtManager/config.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006, 2012-2015 Red Hat, Inc.
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import os
diff --git a/virtManager/connect.py b/virtManager/connect.py
index a08c9f4a..f0d61dfc 100644
--- a/virtManager/connect.py
+++ b/virtManager/connect.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006, 2013 Red Hat, Inc.
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import glob
diff --git a/virtManager/connectauth.py b/virtManager/connectauth.py
index 774057ec..5eca0d78 100644
--- a/virtManager/connectauth.py
+++ b/virtManager/connectauth.py
@@ -1,7 +1,7 @@
# Copyright (C) 2012-2013 Red Hat, Inc.
# Copyright (C) 2012 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import collections
diff --git a/virtManager/connection.py b/virtManager/connection.py
index 0f364cc9..6340b234 100644
--- a/virtManager/connection.py
+++ b/virtManager/connection.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006, 2013, 2014, 2015 Red Hat, Inc.
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/connmanager.py b/virtManager/connmanager.py
index 7315764a..6ae4aff2 100644
--- a/virtManager/connmanager.py
+++ b/virtManager/connmanager.py
@@ -1,6 +1,6 @@
# Copyright (C) 2018 Red Hat, Inc.
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/console.py b/virtManager/console.py
index 47687ff7..30d0c83e 100644
--- a/virtManager/console.py
+++ b/virtManager/console.py
@@ -2,7 +2,7 @@
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
# Copyright (C) 2010 Marc-Andre Lureau <marcandre.lureau@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/create.py b/virtManager/create.py
index d07b28dc..5afe0afe 100644
--- a/virtManager/create.py
+++ b/virtManager/create.py
@@ -1,7 +1,7 @@
# Copyright (C) 2008, 2013, 2014, 2015 Red Hat, Inc.
# Copyright (C) 2008 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import io
diff --git a/virtManager/createinterface.py b/virtManager/createinterface.py
index 63446555..36deb7fe 100644
--- a/virtManager/createinterface.py
+++ b/virtManager/createinterface.py
@@ -1,7 +1,7 @@
# Copyright (C) 2008, 2013 Red Hat, Inc.
# Copyright (C) 2008 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/createnet.py b/virtManager/createnet.py
index 9f5c3e3b..6736daa5 100644
--- a/virtManager/createnet.py
+++ b/virtManager/createnet.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006-2007, 2013 Red Hat, Inc.
# Copyright (C) 2006 Hugh O. Brock <hbrock@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import ipaddress
diff --git a/virtManager/createpool.py b/virtManager/createpool.py
index 82502528..e43aae79 100644
--- a/virtManager/createpool.py
+++ b/virtManager/createpool.py
@@ -1,7 +1,7 @@
# Copyright (C) 2008, 2013, 2014 Red Hat, Inc.
# Copyright (C) 2008 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/createvol.py b/virtManager/createvol.py
index dcc45530..0bf247f2 100644
--- a/virtManager/createvol.py
+++ b/virtManager/createvol.py
@@ -1,7 +1,7 @@
# Copyright (C) 2008, 2013, 2014 Red Hat, Inc.
# Copyright (C) 2008 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/delete.py b/virtManager/delete.py
index e49985f2..94d97c6b 100644
--- a/virtManager/delete.py
+++ b/virtManager/delete.py
@@ -1,7 +1,7 @@
# Copyright (C) 2009, 2012-2014 Red Hat, Inc.
# Copyright (C) 2009 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import os
diff --git a/virtManager/details.py b/virtManager/details.py
index fd669fc5..45d475a8 100644
--- a/virtManager/details.py
+++ b/virtManager/details.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006-2008, 2013, 2014 Red Hat, Inc.
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/domain.py b/virtManager/domain.py
index 0b88e1c5..1cc03682 100644
--- a/virtManager/domain.py
+++ b/virtManager/domain.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006, 2013, 2014 Red Hat, Inc.
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/engine.py b/virtManager/engine.py
index 9ca2d4ea..a431f464 100644
--- a/virtManager/engine.py
+++ b/virtManager/engine.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006, 2013-2014 Red Hat, Inc.
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/error.py b/virtManager/error.py
index 7480de91..2fca46db 100644
--- a/virtManager/error.py
+++ b/virtManager/error.py
@@ -1,6 +1,6 @@
# Copyright (C) 2007, 2013-2014 Red Hat, Inc.
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/fsdetails.py b/virtManager/fsdetails.py
index cbeb7c1f..2c0f1229 100644
--- a/virtManager/fsdetails.py
+++ b/virtManager/fsdetails.py
@@ -2,7 +2,7 @@
# Copyright (C) 2006 Hugh O. Brock <hbrock@redhat.com>
# Copyright (C) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
from gi.repository import Gtk
diff --git a/virtManager/gfxdetails.py b/virtManager/gfxdetails.py
index b3ff67e9..c2207dd6 100644
--- a/virtManager/gfxdetails.py
+++ b/virtManager/gfxdetails.py
@@ -2,7 +2,7 @@
# Copyright (C) 2006 Hugh O. Brock <hbrock@redhat.com>
# Copyright (C) 2014 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
from gi.repository import Gtk
diff --git a/virtManager/graphwidgets.py b/virtManager/graphwidgets.py
index 2d747c5f..ae86e41e 100644
--- a/virtManager/graphwidgets.py
+++ b/virtManager/graphwidgets.py
@@ -1,6 +1,6 @@
# Copyright (C) 2013, 2014 Red Hat, Inc.
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
from gi.repository import GObject
diff --git a/virtManager/host.py b/virtManager/host.py
index 473504e2..8cac076b 100644
--- a/virtManager/host.py
+++ b/virtManager/host.py
@@ -1,7 +1,7 @@
# Copyright (C) 2007, 2013-2014 Red Hat, Inc.
# Copyright (C) 2007 Daniel P. Berrange <berrange@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import functools
diff --git a/virtManager/inspection.py b/virtManager/inspection.py
index 36f35935..ea6123b8 100644
--- a/virtManager/inspection.py
+++ b/virtManager/inspection.py
@@ -1,6 +1,6 @@
# Copyright (C) 2011, 2013 Red Hat, Inc.
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import functools
diff --git a/virtManager/interface.py b/virtManager/interface.py
index 96f44225..525ac583 100644
--- a/virtManager/interface.py
+++ b/virtManager/interface.py
@@ -1,7 +1,7 @@
# Copyright (C) 2009, 2013 Red Hat, Inc.
# Copyright (C) 2009 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
from virtinst import Interface
diff --git a/virtManager/keyring.py b/virtManager/keyring.py
index 006a8273..d8be8b0c 100644
--- a/virtManager/keyring.py
+++ b/virtManager/keyring.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006, 2013 Red Hat, Inc.
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/libvirtenummap.py b/virtManager/libvirtenummap.py
index 5c31c2d4..eaad0374 100644
--- a/virtManager/libvirtenummap.py
+++ b/virtManager/libvirtenummap.py
@@ -1,6 +1,6 @@
# Copyright (C) 2018 Red Hat, Inc.
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/libvirtobject.py b/virtManager/libvirtobject.py
index eaeffe37..c933253f 100644
--- a/virtManager/libvirtobject.py
+++ b/virtManager/libvirtobject.py
@@ -1,7 +1,7 @@
# Copyright (C) 2010, 2013 Red Hat, Inc.
# Copyright (C) 2010 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/manager.py b/virtManager/manager.py
index f0f4d19e..99cc5b16 100644
--- a/virtManager/manager.py
+++ b/virtManager/manager.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006-2008, 2013-2014 Red Hat, Inc.
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/mediacombo.py b/virtManager/mediacombo.py
index 2f577943..a3493cb7 100644
--- a/virtManager/mediacombo.py
+++ b/virtManager/mediacombo.py
@@ -1,6 +1,6 @@
# Copyright (C) 2014 Red Hat, Inc.
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/migrate.py b/virtManager/migrate.py
index e3bb47e6..a03bbb05 100644
--- a/virtManager/migrate.py
+++ b/virtManager/migrate.py
@@ -1,7 +1,7 @@
# Copyright (C) 2009, 2013 Red Hat, Inc.
# Copyright (C) 2009 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/module_trace.py b/virtManager/module_trace.py
index 3557b4b8..64dd3c79 100644
--- a/virtManager/module_trace.py
+++ b/virtManager/module_trace.py
@@ -1,7 +1,7 @@
# Copyright (C) 2011, 2013 Red Hat, Inc.
# Copyright (C) 2011 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
# This module provides a simple way to trace any activity on a specific
diff --git a/virtManager/netlist.py b/virtManager/netlist.py
index 12c09787..3250be7f 100644
--- a/virtManager/netlist.py
+++ b/virtManager/netlist.py
@@ -1,6 +1,6 @@
# Copyright (C) 2014 Red Hat, Inc.
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/network.py b/virtManager/network.py
index 411b4dcb..d6679a69 100644
--- a/virtManager/network.py
+++ b/virtManager/network.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006, 2013-2014 Red Hat, Inc.
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import ipaddress
diff --git a/virtManager/nodedev.py b/virtManager/nodedev.py
index 714dc989..9b51ab59 100644
--- a/virtManager/nodedev.py
+++ b/virtManager/nodedev.py
@@ -1,7 +1,7 @@
# Copyright (C) 2011, 2013 Red Hat, Inc.
# Copyright (C) 2011 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
from virtinst import NodeDevice
diff --git a/virtManager/packageutils.py b/virtManager/packageutils.py
index 3fda77c8..a10d2306 100644
--- a/virtManager/packageutils.py
+++ b/virtManager/packageutils.py
@@ -1,7 +1,7 @@
# Copyright (C) 2012-2013 Red Hat, Inc.
# Copyright (C) 2012 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/preferences.py b/virtManager/preferences.py
index f9a22d74..d53df10e 100644
--- a/virtManager/preferences.py
+++ b/virtManager/preferences.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006, 2012-2013 Red Hat, Inc.
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/serialcon.py b/virtManager/serialcon.py
index 05ec83ae..50428100 100644
--- a/virtManager/serialcon.py
+++ b/virtManager/serialcon.py
@@ -1,7 +1,7 @@
# Copyright (C) 2006, 2013 Red Hat, Inc.
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import os
diff --git a/virtManager/snapshots.py b/virtManager/snapshots.py
index c714c78e..afbbaceb 100644
--- a/virtManager/snapshots.py
+++ b/virtManager/snapshots.py
@@ -1,7 +1,7 @@
# Copyright (C) 2013-2014 Red Hat, Inc.
# Copyright (C) 2013 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import datetime
diff --git a/virtManager/sshtunnels.py b/virtManager/sshtunnels.py
index e5a67bef..25e95085 100644
--- a/virtManager/sshtunnels.py
+++ b/virtManager/sshtunnels.py
@@ -1,6 +1,6 @@
# Copyright (C) 2014, 2015 Red Hat, Inc.
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import functools
diff --git a/virtManager/storagebrowse.py b/virtManager/storagebrowse.py
index 7e1cb1dd..553edd44 100644
--- a/virtManager/storagebrowse.py
+++ b/virtManager/storagebrowse.py
@@ -1,7 +1,7 @@
# Copyright (C) 2009, 2013, 2014 Red Hat, Inc.
# Copyright (C) 2009 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/storagelist.py b/virtManager/storagelist.py
index 77c47cc6..bc760e1e 100644
--- a/virtManager/storagelist.py
+++ b/virtManager/storagelist.py
@@ -1,6 +1,6 @@
# Copyright (C) 2015 Red Hat, Inc.
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/storagepool.py b/virtManager/storagepool.py
index ccdb3082..bf79b161 100644
--- a/virtManager/storagepool.py
+++ b/virtManager/storagepool.py
@@ -1,7 +1,7 @@
# Copyright (C) 2008, 2013 Red Hat, Inc.
# Copyright (C) 2008 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/systray.py b/virtManager/systray.py
index dc1764b3..a2897973 100644
--- a/virtManager/systray.py
+++ b/virtManager/systray.py
@@ -1,7 +1,7 @@
# Copyright (C) 2009, 2013 Red Hat, Inc.
# Copyright (C) 2009 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/uiutil.py b/virtManager/uiutil.py
index 8eb1e393..56424303 100644
--- a/virtManager/uiutil.py
+++ b/virtManager/uiutil.py
@@ -1,7 +1,7 @@
# Copyright (C) 2009, 2013, 2014 Red Hat, Inc.
# Copyright (C) 2009 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
from gi.repository import GObject
diff --git a/virtManager/viewers.py b/virtManager/viewers.py
index 09f99445..7ccf5fbd 100644
--- a/virtManager/viewers.py
+++ b/virtManager/viewers.py
@@ -2,7 +2,7 @@
# Copyright (C) 2006 Daniel P. Berrange <berrange@redhat.com>
# Copyright (C) 2010 Marc-Andre Lureau <marcandre.lureau@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging
diff --git a/virtManager/vmmenu.py b/virtManager/vmmenu.py
index 0af04ceb..7005c2f3 100644
--- a/virtManager/vmmenu.py
+++ b/virtManager/vmmenu.py
@@ -1,7 +1,7 @@
# Copyright (C) 2009, 2013, 2014 Red Hat, Inc.
# Copyright (C) 2009 Cole Robinson <crobinso@redhat.com>
#
-# This work is licensed under the GNU GPLv2.
+# This work is licensed under the GNU GPLv2 or later.
# See the COPYING file in the top-level directory.
import logging