mirror of
https://github.com/nvbn/thefuck.git
synced 2025-10-30 14:44:05 +00:00
Use spaces instead of tabs
This is more common in python and follows other rules usage.
This commit is contained in:
@@ -5,13 +5,11 @@
|
|||||||
# The file ~/github.com does not exist.
|
# The file ~/github.com does not exist.
|
||||||
# Perhaps you meant 'http://github.com'?
|
# Perhaps you meant 'http://github.com'?
|
||||||
#
|
#
|
||||||
#
|
|
||||||
|
|
||||||
def match(command, settings):
|
def match(command, settings):
|
||||||
return (command.script.startswith('open')
|
return (command.script.startswith('open')
|
||||||
and (
|
and (
|
||||||
# Wanted to use this:
|
|
||||||
# 'http' in command.stderr
|
|
||||||
'.com' in command.script
|
'.com' in command.script
|
||||||
or '.net' in command.script
|
or '.net' in command.script
|
||||||
or '.org' in command.script
|
or '.org' in command.script
|
||||||
@@ -20,5 +18,6 @@ def match(command, settings):
|
|||||||
or '.se' in command.script
|
or '.se' in command.script
|
||||||
or '.edu' in command.script))
|
or '.edu' in command.script))
|
||||||
|
|
||||||
|
|
||||||
def get_new_command(command, settings):
|
def get_new_command(command, settings):
|
||||||
return 'open http://' + command.script[5:]
|
return 'open http://' + command.script[5:]
|
||||||
|
|||||||
Reference in New Issue
Block a user