Skip to content

Commit c9adef5

Browse files
author
Kazuki Suzuki Przyborowski
committed
Update archiveneofile.py
1 parent b468858 commit c9adef5

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

archiveneofile.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
import sys, os, io, argparse
66

77
try:
8-
import pycatfile as P # core must provide *_neo functions
8+
import pyarchivefile as P # core must provide *_neo functions
99
except Exception as e:
10-
sys.stderr.write("Failed to import core module 'pycatfile': %s\n" % (e,))
10+
sys.stderr.write("Failed to import core module 'pyarchivefile': %s\n" % (e,))
1111
sys.exit(2)
1212

1313

@@ -28,7 +28,7 @@ def main():
2828
argv = _expand_combined_short_opts(sys.argv)
2929

3030
p = argparse.ArgumentParser(
31-
description="PyNeoFile CLI (uses pycatfile core)")
31+
description="PyNeoFile CLI (uses pyarchivefile core)")
3232
g = p.add_mutually_exclusive_group(required=True)
3333
g.add_argument("-l", "--list", action="store_true", help="List archive")
3434
g.add_argument("-e", "--extract", action="store_true", help="Extract archive")

0 commit comments

Comments
 (0)