diff options
author | Laurie Clark-Michalek <laurie@qubit.com> | 2016-05-22 15:46:24 +0100 |
---|---|---|
committer | Laurie Clark-Michalek <laurie@qubit.com> | 2016-05-22 15:46:24 +0100 |
commit | 182c8a0c0a8fb9a96f1a2fd20a6f98139269d839 (patch) | |
tree | 8ecd07a752a849c21c2d31ce2697f3082e11c3d8 | |
parent | d40169b377399c7ecb261f31425d0408965e314a (diff) | |
parent | 27fb52e3195c250b6c2b2d04a61ca8598ed2ae53 (diff) |
Merge pull request #31 from rski/version_fix
This fixes version to conform to pep 396
-rwxr-xr-x | archey3 | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -1,6 +1,6 @@ #!/usr/bin/env python # -# archey3 [version 0.5] +# archey3 # # Copyright 2010 Melik Manukyan <melik@archlinux.us> # Copyright 2010-2012 Laurie Clark-Michalek <bluepeppers@archlinux.us> @@ -10,6 +10,8 @@ # Simple python script to display an Archlinux logo in ASCII art # Along with basic system information. +__version__ = "0.5" + # Import libraries import collections import subprocess, optparse, re, sys, configparser @@ -825,7 +827,7 @@ def main(): usage='%prog', description="""%prog is a utility to display system info and take\ screenshots""", - version="%prog 0.3") + version="%prog {version}".format(version=__version__)) parser.add_option('-c', '--color', action='store', type='choice', dest='color', choices=('black', |