|
@@ -783,11 +783,9 @@ async def _version_command(bot, update, user_record):
|
|
|
_subprocess = await asyncio.create_subprocess_exec(
|
|
|
'git', 'rev-parse', 'HEAD',
|
|
|
stdout=asyncio.subprocess.PIPE,
|
|
|
- stderr=asyncio.subprocess.PIPE
|
|
|
+ stderr=asyncio.subprocess.STDOUT
|
|
|
)
|
|
|
- stdout, stderr = await _subprocess.communicate()
|
|
|
- if stderr is not None:
|
|
|
- raise Exception(stderr.decode().strip())
|
|
|
+ stdout, _ = await _subprocess.communicate()
|
|
|
version = stdout.decode().strip()
|
|
|
except Exception as e:
|
|
|
return f"{e}"
|