nvbn/thefuck

View on GitHub
thefuck/rules/fix_alt_space.py

Summary

Maintainability
A
0 mins
Test Coverage
# -*- encoding: utf-8 -*-

import re
from thefuck.specific.sudo import sudo_support


@sudo_support
def match(command):
    return ('command not found' in command.output.lower()
            and u' ' in command.script)


@sudo_support
def get_new_command(command):
    return re.sub(u' ', ' ', command.script)