Skip to content

Commit d391993

Browse files
committed
Update 0008_ruby_importer.py
Corrected a typo in remove_ruby_importer Signed-off-by: Shivam Sandbhor <shivam.sandbhor@gmail.com>
1 parent e69c574 commit d391993

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

vulnerabilities/migrations/0008_ruby_importer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def add_ruby_importer(apps, _):
1717

1818
def remove_ruby_importer(apps, _):
1919
Importer = apps.get_model('vulnerabilities', 'Importer')
20-
qs = Importer.objects.filter(name='rubyy')
20+
qs = Importer.objects.filter(name='ruby')
2121
if qs:
2222
qs[0].delete()
2323

0 commit comments

Comments
 (0)