Skip to content

Commit 5783b46

Browse files
committed
Fix pyarmor man raise normpath error
1 parent 636b271 commit 5783b46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -328,7 +328,7 @@ def cmd_reg(ctx, args):
328328

329329

330330
def cmd_man(ctx, args):
331-
pkgpath = os.path.normpath(os.path.dirname(__file__), '..', 'man')
331+
pkgpath = os.path.join(os.path.dirname(__file__), '..', 'man')
332332
if not os.path.exists(pkgpath):
333333
from subprocess import check_output
334334
check_output([

0 commit comments

Comments
 (0)