From fa46b07db15f5ce41be3f4944d2ff011794207d5 Mon Sep 17 00:00:00 2001 From: Hornwitser Date: Wed, 1 Aug 2018 11:41:15 +0200 Subject: [lint] Rename exception variables to exc Use the more explicit (and common) exc instead of e as the variable holding the exception in except handlers. --- discord/player.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'discord/player.py') diff --git a/discord/player.py b/discord/player.py index a31b8fd2..e72d2c43 100644 --- a/discord/player.py +++ b/discord/player.py @@ -162,8 +162,8 @@ class FFmpegPCMAudio(AudioSource): self._stdout = self._process.stdout except FileNotFoundError: raise ClientException(executable + ' was not found.') from None - except subprocess.SubprocessError as e: - raise ClientException('Popen failed: {0.__class__.__name__}: {0}'.format(e)) from e + except subprocess.SubprocessError as exc: + raise ClientException('Popen failed: {0.__class__.__name__}: {0}'.format(exc)) from exc def read(self): ret = self._stdout.read(OpusEncoder.FRAME_SIZE) @@ -292,8 +292,8 @@ class AudioPlayer(threading.Thread): def run(self): try: self._do_run() - except Exception as e: - self._current_error = e + except Exception as exc: + self._current_error = exc self.stop() finally: self.source.cleanup() -- cgit v1.2.3