mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-12-07 09:52:30 -05:00
[V3 Travis] Update travis to not skip pipfile lock... (#1678)
* Update travis to not sip pipfile lock update pipfile dependencies additional black formatting pass to conform to black 18.5b * . * pin async timeout until further discussion of 3.5 support * .
This commit is contained in:
@@ -356,16 +356,13 @@ def debug_info():
|
||||
os_info = distro.linux_distribution()
|
||||
osver = "{} {}".format(os_info[0], os_info[1]).strip()
|
||||
user_who_ran = getpass.getuser()
|
||||
info = "Debug Info for Red\n\n" + "Python version: {}\n".format(
|
||||
pyver
|
||||
) + "Red version: {}\n".format(
|
||||
redver
|
||||
) + "OS version: {}\n".format(
|
||||
osver
|
||||
) + "System arch: {}\n".format(
|
||||
platform.machine()
|
||||
) + "User: {}\n".format(
|
||||
user_who_ran
|
||||
info = (
|
||||
"Debug Info for Red\n\n"
|
||||
+ "Python version: {}\n".format(pyver)
|
||||
+ "Red version: {}\n".format(redver)
|
||||
+ "OS version: {}\n".format(osver)
|
||||
+ "System arch: {}\n".format(platform.machine())
|
||||
+ "User: {}\n".format(user_who_ran)
|
||||
)
|
||||
print(info)
|
||||
exit(0)
|
||||
|
||||
Reference in New Issue
Block a user