mirror of
https://github.com/nvbn/thefuck.git
synced 2025-03-21 01:59:10 +00:00
16 lines
331 B
Python
16 lines
331 B
Python
# -*- encoding: utf-8 -*-
|
||
|
||
import re
|
||
from thefuck.specific.sudo import sudo_support
|
||
|
||
|
||
@sudo_support
|
||
def match(command, settings):
|
||
return ('command not found' in command.stderr.lower()
|
||
and u' ' in command.script)
|
||
|
||
|
||
@sudo_support
|
||
def get_new_command(command, settings):
|
||
return re.sub(u' ', ' ', command.script)
|