1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-13 22:28:33 +00:00

fucking parentheses...

This commit is contained in:
Jared Henry Oviatt 2015-05-06 19:51:44 -07:00
parent b6057ad335
commit fd665be8a9

View File

@ -38,7 +38,7 @@ def get_fuckups(): # returns a dictionary of your fuckups from ~/.thefuck/my_fuc
def add_fuckup(fucked, fixed):
print 'Adding fucked: ' + fucked + ' as fixed: ' + fixed
print ('Adding fucked: ' + fucked + ' as fixed: ' + fixed)
FILENAME = '~/.thefuck/my_fuckups'
FILE = open(FILENAME, 'w')
@ -52,7 +52,7 @@ def add_fuckup(fucked, fixed):
def remove_fuckup(fuckup):
print 'Removing fucked: ' + fucked + ' as fixed: ' + fixed
print ('Removing fucked: ' + fucked + ' as fixed: ' + fixed)
FILENAME = '~/.thefuck/my_fuckups'
FILE = open(FILENAME, 'r')