Skip to content

Commit 63cf934

Browse files
committed
fixed flake8 error
1 parent 16ff0a1 commit 63cf934

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.233
1+
1.1.234

boards/views.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,11 @@ def restore_article(request, id):
345345
def search_article(request, search_type, search_word, table=0):
346346
"""Search article"""
347347
return redirect(reverse_lazy('boards:show_search_article', kwargs={
348-
'search_type': search_type, 'search_word': search_word, 'table': table, 'page': 1}))
348+
'search_type': search_type,
349+
'search_word': search_word,
350+
'table': table,
351+
'page': 1
352+
}))
349353

350354

351355
def search_reply(request, search_type, search_word, table=0, page=1):

0 commit comments

Comments
 (0)