We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae834ec commit 458db0cCopy full SHA for 458db0c
2 files changed
bpython/args.py
@@ -72,7 +72,8 @@ def parse(args, extras=None):
72
if options.version:
73
print 'bpython version', __version__,
74
print 'on top of Python', sys.version.split()[0]
75
- print '(C) 2008-2009 Bob Farrell et al. See AUTHORS for detail.'
+ print ('(C) 2008-2009 Bob Farrell, Andreas Stuehrk et al. '
76
+ 'See AUTHORS for detail.')
77
raise SystemExit
78
79
if not (sys.stdin.isatty() and sys.stdout.isatty()):
setup.py
@@ -30,7 +30,7 @@
30
setup(
31
name="bpython",
32
version = __version__,
33
- author = "Robert Anthony Farrell et al.",
+ author = "Robert Anthony Farrell, Andreas Stuehrk et al.",
34
author_email = "robertanthonyfarrell@gmail.com",
35
description = "Fancy Interface to the Python Interpreter",
36
license = "MIT/X",
0 commit comments