Skip to content

Commit

Permalink
Merge pull request #2416 from sopel-irc/reload-rm-update-cmd
Browse files Browse the repository at this point in the history
reload: remove `.update` command
  • Loading branch information
dgw authored Mar 3, 2023
2 parents 292d222 + c743925 commit 10bc3ed
Showing 1 changed file with 0 additions and 22 deletions.
22 changes: 0 additions & 22 deletions sopel/modules/reload.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
from __future__ import annotations

import logging
import subprocess

from sopel import plugin, plugins

Expand Down Expand Up @@ -56,19 +55,6 @@ def f_reload(bot, trigger):
))


@plugin.nickname_command('update')
@plugin.require_admin
@plugin.output_prefix(PLUGIN_OUTPUT_PREFIX)
def f_update(bot, trigger):
"""Pulls the latest versions of all plugins from Git (for use by admins only)."""
proc = subprocess.Popen('/usr/bin/git pull',
stdout=subprocess.PIPE,
stderr=subprocess.PIPE, shell=True)
bot.reply(proc.communicate()[0])

f_reload(bot, trigger)


@plugin.nickname_command("load")
@plugin.priority("low")
@plugin.thread(False)
Expand Down Expand Up @@ -119,14 +105,6 @@ def pm_f_reload(bot, trigger):
f_reload(bot, trigger)


@plugin.command('update')
@plugin.require_privmsg
@plugin.output_prefix(PLUGIN_OUTPUT_PREFIX)
def pm_f_update(bot, trigger):
"""Wrapper for allowing delivery of .update command via PM"""
f_update(bot, trigger)


@plugin.command("load")
@plugin.priority("low")
@plugin.thread(False)
Expand Down

0 comments on commit 10bc3ed

Please sign in to comment.