Skip to content

Commit 34c08fc

Browse files
Cat program revised (v2) (bugfix)
Additional change: * Fixed improper behavior if no arguments were passed
1 parent 5566d58 commit 34c08fc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Cat/cat.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,11 @@ def no_files():
4949

5050
def main():
5151
"""Entry point of the cat program."""
52-
try:
53-
# Read the arguments passed to the program
54-
with_files(sys.argv[1:])
55-
except IndexError:
52+
# Read the arguments passed to the program
53+
if not sys.argv[1:]:
5654
no_files()
55+
else:
56+
with_files(sys.argv[1:])
5757

5858
if __name__ == "__main__":
5959
main()

0 commit comments

Comments
 (0)