Skip to content

Commit

Permalink
Change copyright year to 2018
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolargo committed May 12, 2018
1 parent 0d7dd3d commit 33d20ab
Show file tree
Hide file tree
Showing 88 changed files with 104 additions and 96 deletions.
2 changes: 1 addition & 1 deletion glances/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Glances - An eye on your system
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/amps/glances_amp.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/amps/glances_default.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/amps/glances_nginx.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/amps/glances_systemd.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/amps/glances_systemv.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
4 changes: 2 additions & 2 deletions glances/amps_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down Expand Up @@ -113,7 +113,7 @@ def update(self):
continue
try:
amps_list = [p for p in processlist for c in p['cmdline'] if re.search(v.regex(), c) is not None]
except TypeError:
except (TypeError, KeyError):
continue
if len(amps_list) > 0:
# At least one process is matching the regex
Expand Down
2 changes: 1 addition & 1 deletion glances/attribute.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/autodiscover.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/client_browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/compat.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/cpu_percent.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/exports/glances_cassandra.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/exports/glances_couchdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/exports/glances_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/exports/glances_elasticsearch.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/exports/glances_export.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/exports/glances_influxdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/exports/glances_kafka.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/exports/glances_opentsdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/exports/glances_prometheus.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/exports/glances_rabbitmq.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/exports/glances_restful.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/exports/glances_riemann.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/exports/glances_statsd.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/exports/glances_zeromq.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/folder_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/globals.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/history.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/logs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/outdated.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/outputs/glances_bars.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/outputs/glances_bottle.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/outputs/glances_curses_browser.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/password.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
2 changes: 1 addition & 1 deletion glances/password_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
#
# This file is part of Glances.
#
# Copyright (C) 2017 Nicolargo <[email protected]>
# Copyright (C) 2018 Nicolargo <[email protected]>
#
# Glances is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
Expand Down
Loading

0 comments on commit 33d20ab

Please sign in to comment.