aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'pym/gentoolkit')
-rw-r--r--pym/gentoolkit/ekeyword/__init__.py0
-rwxr-xr-xpym/gentoolkit/ekeyword/ekeyword.py4
2 files changed, 2 insertions, 2 deletions
diff --git a/pym/gentoolkit/ekeyword/__init__.py b/pym/gentoolkit/ekeyword/__init__.py
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/pym/gentoolkit/ekeyword/__init__.py
diff --git a/pym/gentoolkit/ekeyword/ekeyword.py b/pym/gentoolkit/ekeyword/ekeyword.py
index 31225b0..170c25b 100755
--- a/pym/gentoolkit/ekeyword/ekeyword.py
+++ b/pym/gentoolkit/ekeyword/ekeyword.py
@@ -51,7 +51,7 @@ import portage
from portage.output import colorize, nocolor
-VERSION = '1.0 awesome'
+__version__ = 'git'
# Operation object that describes how to perform a change.
# Args:
@@ -475,7 +475,7 @@ def get_parser():
parser.add_argument('--format', default='auto', dest='style',
choices=('auto', 'color-inline', 'inline', 'short-multi', 'long-multi'),
help='Selet output format for showing differences')
- parser.add_argument('-V', '--version', action='version', version=VERSION,
+ parser.add_argument('-V', '--version', action='version', version=__version__,
help='Show version information')
return parser