diff options
author | Isis Lovecruft <isis@torproject.org> | 2013-02-17 14:33:53 +0000 |
---|---|---|
committer | Isis Lovecruft <isis@torproject.org> | 2013-02-17 14:33:53 +0000 |
commit | c9aa79c427c215ebc3abf2b9b9260739aef68b50 (patch) | |
tree | 5e2e7b1a203dac53842dfb68eaab5c158c8aa5ea | |
parent | de5e6ca37ff48b11f8215788974e2e9cee04fb3e (diff) |
Move credit and license info out of __main__.__doc__ so that it's not crufting
up the screen everytime we run start_mx.py.
-rwxr-xr-x | start_mx.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/start_mx.py b/start_mx.py index 79943d9..37ac5c0 100755 --- a/start_mx.py +++ b/start_mx.py @@ -10,12 +10,11 @@ | and is part of the Leap Encryption Access | | Project platform. | |___________________________________________| - - authors: Isis Agora Lovecruft, <isis@leap.se> 0x2cdb8b35 - license: AGPLv3, see included LICENCE file. - copyright: copyright (c) 2013 Isis Agora Lovecruft - """ + # authors: Isis Agora Lovecruft, <isis@leap.se> 0x2cdb8b35 + # license: AGPLv3, see included LICENCE file. + # copyright: copyright (c) 2013 Isis Agora Lovecruft + from __future__ import print_function from os import getcwd |