Another fix to !fpull

This commit is contained in:
nyuszika7h 2014-04-30 18:55:25 +02:00
parent 7d1d68f2b8
commit 7455bcaf8a

View File

@ -3112,7 +3112,7 @@ def player_stats_pm(cli, nick, rest):
@cmd("fpull", admin_only=True)
def fpull(cli, nick, chan, rest):
try:
output = subprocess.check_output(('git', 'pull', '-q'), stderr=subprocess.STDOUT)
output = subprocess.check_output(('git', 'pull', '--no-progress'), stderr=subprocess.STDOUT)
except subprocess.CalledProcessError as e:
if chan == nick:
pm(cli, nick, '{0}: {1}'.format(type(e), e))