1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-11-16 06:46:03 +00:00
Files
thefuck/thefuck/rules/java.py
mcarton 7173e0dbad Use spaces instead of tabs
The is more common in python and follows other rules usage.
2015-06-26 14:50:01 +02:00

15 lines
321 B
Python

# Fixes common java command mistake
#
# Example:
# > java foo.java
# Error: Could not find or load main class foo.java
def match(command, settings):
return (command.script.startswith('java ')
and command.script.endswith('.java'))
def get_new_command(command, settings):
return command.script[:-5]