Skip to content

Commit

Permalink
wx.metadata/mdlib: fix removeNonAscii function return value
Browse files Browse the repository at this point in the history
  • Loading branch information
tmszi committed Jul 2, 2020
1 parent 9589e76 commit 029e57d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion grass7/gui/wxpython/wx.metadata/mdlib/mdutil.py
Expand Up @@ -74,7 +74,7 @@ def removeNonAscii(s):
'''Removed non ASCII chars
'''
s = [x for x in s if x in string.printable]
return s
return ''.join(s)


def yesNo(parent, question, caption='Yes or no?'):
Expand Down

0 comments on commit 029e57d

Please sign in to comment.