summaryrefslogtreecommitdiffstats
path: root/src/fedpkg.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/fedpkg.py')
-rwxr-xr-xsrc/fedpkg.py8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/fedpkg.py b/src/fedpkg.py
index 4275f5f..91a7b5d 100755
--- a/src/fedpkg.py
+++ b/src/fedpkg.py
@@ -1428,12 +1428,8 @@ defined, packages will be built sequentially.""")
return parser.parse_args()
else:
# Generate the man page
-
- # Use the "as man_page" part to avoid overwriting the pyfedpkg
- # namespace, which would break all usage of pyfedpkg.* outside
- # of this else branch.
- import pyfedpkg.man_page as man_page
- man_page.generate(parser, subparsers)
+ import fedpkg_man_page
+ fedpkg_man_page.generate(parser, subparsers)
sys.exit(0)
# no return possible