Skip to content

Commit

Permalink
One more
Browse files Browse the repository at this point in the history
  • Loading branch information
rocky committed Feb 5, 2024
1 parent f7436a4 commit 86e22bb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions uncompyle6/bin/pydisassemble.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,15 +51,15 @@


def main():
Usage_short = (
usage_short = (
"""usage: %s FILE...
Type -h for for full help."""
% program
)

if len(sys.argv) == 1:
print("No file(s) given", file=sys.stderr)
print(Usage_short, file=sys.stderr)
print(usage_short, file=sys.stderr)
sys.exit(1)

try:
Expand All @@ -79,7 +79,7 @@ def main():
sys.exit(0)
else:
print(opt)
print(Usage_short, file=sys.stderr)
print(usage_short, file=sys.stderr)
sys.exit(1)

for file in files:
Expand Down

0 comments on commit 86e22bb

Please sign in to comment.