summaryrefslogtreecommitdiffstats
path: root/subcmds/version.py
diff options
context:
space:
mode:
Diffstat (limited to 'subcmds/version.py')
-rw-r--r--subcmds/version.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/subcmds/version.py b/subcmds/version.py
index e95a86dc..1d9abb58 100644
--- a/subcmds/version.py
+++ b/subcmds/version.py
@@ -18,6 +18,7 @@ import sys
18from command import Command, MirrorSafeCommand 18from command import Command, MirrorSafeCommand
19from git_command import git, RepoSourceVersion, user_agent 19from git_command import git, RepoSourceVersion, user_agent
20from git_refs import HEAD 20from git_refs import HEAD
21from wrapper import Wrapper
21 22
22 23
23class Version(Command, MirrorSafeCommand): 24class Version(Command, MirrorSafeCommand):
@@ -62,3 +63,4 @@ class Version(Command, MirrorSafeCommand):
62 print('OS %s %s (%s)' % (uname.system, uname.release, uname.version)) 63 print('OS %s %s (%s)' % (uname.system, uname.release, uname.version))
63 print('CPU %s (%s)' % 64 print('CPU %s (%s)' %
64 (uname.machine, uname.processor if uname.processor else 'unknown')) 65 (uname.machine, uname.processor if uname.processor else 'unknown'))
66 print('Bug reports:', Wrapper().BUG_URL)