# HG changeset patch # User Teemu Piippo # Date 1417273902 18000 # Node ID e4891ab34fb168901933aada5af01d81778d67a5 # Parent 2a56ccf6778242f461dc439786255d9250be3407 - .update removed, no longer necessary diff -r 2a56ccf67782 -r e4891ab34fb1 mod_admin.py --- a/mod_admin.py Sat Nov 29 16:53:32 2014 +0200 +++ b/mod_admin.py Sat Nov 29 10:11:42 2014 -0500 @@ -26,13 +26,6 @@ }, { - 'name': 'update', - 'description': 'Checks for updates on the bot', - 'args': None, - 'level': 'admin' - }, - - { 'name': 'die', 'description': 'Shuts the bot down', 'args': None, @@ -52,18 +45,3 @@ def cmd_die (bot, **rest): quit() - -def cmd_update (bot, replyto, **rest): - try: - repo = hgapi.Repo ('.') - r1 = repo.hg_id() - repo.hg_pull() - repo.hg_update('tip', True) - r2 = repo.hg_id() - if r1 != r2: - bot.privmsg (replyto, 'Updated to %s, restarting...' % r2) - bot.restart() - else: - bot.privmsg (replyto, 'Up to date at %s.' % r2) - except hgapi.HgException as e: - command_error ('Update failed: %s' % str (e)) \ No newline at end of file