--- pkgtxt2db-0.2.2-old/pkgtxt2db.py 2013-11-30 11:27:03.013305306 -0300 +++ pkgtxt2db-0.2.2/pkgtxt2db.py 2013-11-30 11:28:15.457432804 -0300 @@ -52,7 +52,7 @@ parser.add_argument('-r', '--release', action="store", dest='release', - help='Choose the release: 13.0 to 14.0') + help='Choose the release: 13.0 to 14.1') parser.add_argument('-c', '--convert', action="store", dest='convert', default='csv', @@ -106,7 +106,7 @@ sys.exit('Choose a valid arch please, aborting.') # Check if the choosen release is a valid one. - R = {'13.0', '13.1', '13.37', '14.0', 'current'} + R = {'13.0', '13.1', '13.37', '14.0', '14.1', 'current'} if release not in R: sys.exit('Choose a valid release please, aborting.')