File tree 1 file changed +3
-5
lines changed
reset_migrations/management/commands
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
- from __future__ import print_function
2
-
3
1
from django .core .management import BaseCommand
4
2
from django .core .management import call_command
5
3
from django .db import connection
8
6
import re
9
7
import tempfile
10
8
11
- def delete_line (filename , pattern ):
9
+ def delete_line (filename , pattern , stdout ):
12
10
pattern_compiled = re .compile (pattern )
13
11
with tempfile .NamedTemporaryFile (mode = 'w' , delete = False ) as tmp_file :
14
12
with open (filename ) as src_file :
15
13
for line in src_file :
16
14
if pattern_compiled .findall (line ):
17
- print ('Deleting line in %s' % filename )
15
+ stdout . write ('Deleting line in %s' % filename )
18
16
continue
19
17
tmp_file .write (line )
20
18
@@ -64,7 +62,7 @@ def delete_dependence_app(self, app):
64
62
continue
65
63
if '.py' in file_name :
66
64
regex = r'\(\'%s\'' % app
67
- delete_line (file_name , regex )
65
+ delete_line (file_name , regex , self . stdout )
68
66
69
67
def handle (self , * args , ** options ):
70
68
apps = options ['apps' ]
You can’t perform that action at this time.
0 commit comments