|
@@ -525,12 +525,12 @@ class cmd_pack_objects(Command):
|
|
|
def run(self, args):
|
|
|
opts, args = getopt(args, "", ["stdout"])
|
|
|
opts = dict(opts)
|
|
|
- if len(args) < 1 and "--stdout" not in args:
|
|
|
+ if len(args) < 1 and "--stdout" not in opts.keys():
|
|
|
print("Usage: dulwich pack-objects basename")
|
|
|
sys.exit(1)
|
|
|
object_ids = [line.strip() for line in sys.stdin.readlines()]
|
|
|
basename = args[0]
|
|
|
- if "--stdout" in opts:
|
|
|
+ if "--stdout" in opts.keys():
|
|
|
packf = getattr(sys.stdout, "buffer", sys.stdout)
|
|
|
idxf = None
|
|
|
close = []
|