DEV Community

D
D

Posted on

1

python3 yum

  File "/bin/yum", line 30
    except KeyboardInterrupt, e:
                            ^
SyntaxError: invalid syntax
Enter fullscreen mode Exit fullscreen mode
$ sudo vim /bin/yum
#!/usr/bin/python -> #!/usr/bin/python2
Enter fullscreen mode Exit fullscreen mode
  File "/usr/libexec/urlgrabber-ext-down", line 28
    except OSError, e:
                  ^
SyntaxError: invalid syntax
Enter fullscreen mode Exit fullscreen mode
$ sudo vim /usr/libexec/urlgrabber-ext-down
#!/usr/bin/python -> #!/usr/bin/python2
Enter fullscreen mode Exit fullscreen mode

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay