#300 Move argparse fix to rpkg
Merged 5 years ago by onosek. Opened 5 years ago by onosek.
onosek/fedpkg remove_argparse_fix  into  master

file modified
-8
@@ -59,14 +59,6 @@ 

      client.do_imports(site='fedpkg')

      client.parse_cmdline()

  

-     # This is due to a difference argparse behavior to Python 2 version.

-     # In Python 3, argparse will proceed to here without reporting

-     # "too few arguments". Instead, client.args does not have attribute

-     # command.

-     if not hasattr(client.args, 'command'):

-         client.parser.print_help()

-         sys.exit(1)

- 

      if not client.args.path:

          try:

              client.args.path = pyrpkg.utils.getcwd()

The fix is valid also for rhpkg and moving it to rpkg will prevent code
duplication.

Fixes: #299

Signed-off-by: Ondrej Nosek onosek@redhat.com

rebased onto 62bd5d9

5 years ago

Looks good to me. We will need to be careful to release both fedpkg and python-rpkg at the same time, but that's just a detail.

:thumbsup:

Yeah, don't forget to update BuildRequires and Requires version of fedpkg in python-rpkg spec. :)

Thanks, I was aware of it. I originally didn't plan to add specific version requirement, because it is a really small bug and this requirement demands more accurate and flawless release planning, but when you are recommending it, I will do it.

Pull-Request has been merged by onosek

5 years ago