Always show callsigns in upper case.

pull/61/head
Christian T. Jacobs 2017-04-05 22:58:02 +01:00
rodzic 35922cd493
commit 0cdd59f3ef
1 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -19,6 +19,7 @@
import os
import logging
from pyqso.cabrillo import CONTESTS
class CabrilloExportDialog:
@ -65,4 +66,5 @@ class CabrilloExportDialog:
:returns: The callsign used during the contest.
:rtype: str
"""
return self.mycall_entry.get_text()
# Always show the callsigns in upper case.
return self.mycall_entry.get_text().upper()