From 466878ceaddb00c4ba748c1c091f8c235fc5759f Mon Sep 17 00:00:00 2001 From: Jesse Keating Date: Mon, 4 Jan 2010 11:53:20 -0800 Subject: Wire up the verrel command --- src/fedpkg.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/fedpkg.py') diff --git a/src/fedpkg.py b/src/fedpkg.py index 6683f65..93a4337 100755 --- a/src/fedpkg.py +++ b/src/fedpkg.py @@ -125,8 +125,8 @@ def update(args): print('Not implimented yet, got %s' % args) def verrel(args): - # not implimented - print('Not implimented yet, got %s' % args) + mymodule = fedpkg.PackageModule(args.path) + print('%s-%s' % (mymodule.ver, mymodule.rel)) # THe main code goes here if __name__ == '__main__': -- cgit