Skip to content

Commit b92e5cb

Browse files
authored
Merge pull request #8 from jtrain/patch-1
Avoid use of __future__ import
2 parents cfaf74d + 22dcaf6 commit b92e5cb

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

reset_migrations/management/commands/reset_migrations.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
from __future__ import print_function
2-
31
from django.core.management import BaseCommand
42
from django.core.management import call_command
53
from django.db import connection
@@ -8,13 +6,13 @@
86
import re
97
import tempfile
108

11-
def delete_line(filename, pattern):
9+
def delete_line(filename, pattern, stdout):
1210
pattern_compiled = re.compile(pattern)
1311
with tempfile.NamedTemporaryFile(mode='w', delete=False) as tmp_file:
1412
with open(filename) as src_file:
1513
for line in src_file:
1614
if pattern_compiled.findall(line):
17-
print('Deleting line in %s' % filename)
15+
stdout.write('Deleting line in %s' % filename)
1816
continue
1917
tmp_file.write(line)
2018

@@ -64,7 +62,7 @@ def delete_dependence_app(self, app):
6462
continue
6563
if '.py' in file_name:
6664
regex = r'\(\'%s\'' % app
67-
delete_line(file_name, regex)
65+
delete_line(file_name, regex, self.stdout)
6866

6967
def handle(self, *args, **options):
7068
apps = options['apps']

0 commit comments

Comments
 (0)