Commit c8fdf740 authored by Serge S. Koval's avatar Serge S. Koval

Fixed typo

parent 1e209b0a
...@@ -18,7 +18,7 @@ except ImportError: ...@@ -18,7 +18,7 @@ except ImportError:
return string return string
def ngettext(self, singular, plural, n): def ngettext(self, singular, plural, n):
return singular if num == 1 else plural return singular if n == 1 else plural
else: else:
from flask_admin import translations from flask_admin import translations
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment