Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
update from tail to tailer
  • Loading branch information
benjimons authored Dec 31, 2024
1 parent 9c262df commit c94ea17
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions glances/plugins/tailer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# SPDX-License-Identifier: LGPL-3.0-only
#
"""
Tail plugin for Glances.
Tailer plugin for Glances.
This plugin tails a file (given by the user), displaying:
- last modification time
Expand Down Expand Up @@ -59,7 +59,7 @@
# -----------------------------------------------------------------------------

class PluginModel(GlancesPluginModel):
"""Tail plugin main class.
"""Tailer plugin main class.
Attributes:
self.stats (list): A list of dictionaries, each representing a file’s stats.
Expand Down Expand Up @@ -209,7 +209,7 @@ def msg_curse(self, args=None, max_width=None):
return ret

# Header
ret.append(self.curse_add_line("FILE TAIL PLUGIN", "TITLE"))
ret.append(self.curse_add_line("FILE TAILER PLUGIN", "TITLE"))

# Display the stats
for stat in self.stats:
Expand Down

0 comments on commit c94ea17

Please sign in to comment.