From 4e232fd52d73dc1a52611ab2ee749d4a293605fd Mon Sep 17 00:00:00 2001 From: De Date: Sun, 28 Apr 2019 13:29:42 +0200 Subject: [PATCH] Fixed typo in error message --- src/org/pathvisio/wpclient/dialogs/UpdatePathwayDialog.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/org/pathvisio/wpclient/dialogs/UpdatePathwayDialog.java b/src/org/pathvisio/wpclient/dialogs/UpdatePathwayDialog.java index 2328961..436ca23 100644 --- a/src/org/pathvisio/wpclient/dialogs/UpdatePathwayDialog.java +++ b/src/org/pathvisio/wpclient/dialogs/UpdatePathwayDialog.java @@ -235,9 +235,9 @@ protected WSPathwayInfo doInBackground() throws Exception { } } catch (Exception e) { JOptionPane.showMessageDialog(plugin.getDesktop().getFrame(), - "Error while updating the pathway as you donot have the write access.\n Please submit a request in the following link: \n http://plugins.pathvisio.org/wp-client/request-webservice-access/", "Error", + "Error while updating the pathway, since you do not have write access.\n Please submit a request at the following website: \n http://plugins.pathvisio.org/wp-client/request-webservice-access/", "Error", JOptionPane.ERROR_MESSAGE); - } finally { + } finally { pk.finished(); } return info;