From f4d8ff09441e207b5354fb0ac7fc1efbf483884b Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos <kourem@gmail.com> Date: Sun, 15 May 2005 11:52:35 +0000 Subject: [PATCH] use isdigit() instead of excepting ValueError --- src/config.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/config.py b/src/config.py index 37fba23325..b9e886fdba 100644 --- a/src/config.py +++ b/src/config.py @@ -1085,11 +1085,11 @@ class Account_modification_window: config['proxypass'] = self.xml.get_widget('proxypass_entry').get_text() if config['use_proxy']: if config['proxyport'] != '': - try: - config['proxyport'] = int(config['proxyport']) - except ValueError: - dialogs.Error_dialog(_('Proxy Port must be a port number')) + if not config['proxyport'].isdigit(): + dialogs.Error_dialog(_('Proxy port must be a port number')) return + config['proxyport'] = int(config['proxyport']) + else: dialogs.Error_dialog(_('You must enter a proxy port to use proxy')) return -- GitLab