From 0cdd59f3ef7da05b5e780629da21ce6ab8d2fbe4 Mon Sep 17 00:00:00 2001 From: "Christian T. Jacobs" Date: Wed, 5 Apr 2017 22:58:02 +0100 Subject: [PATCH] Always show callsigns in upper case. --- pyqso/cabrillo_export_dialog.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyqso/cabrillo_export_dialog.py b/pyqso/cabrillo_export_dialog.py index 2cb2372..8ebe124 100644 --- a/pyqso/cabrillo_export_dialog.py +++ b/pyqso/cabrillo_export_dialog.py @@ -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()