Fix #2338 : Spelling mistake with occurred

This commit is contained in:
Calum Lind 2013-06-09 02:30:26 +01:00
parent d91a9504aa
commit 9d48d04f0f
8 changed files with 18 additions and 18 deletions

View File

@ -293,7 +293,7 @@ class Core(component.Component):
result.addCallbacks(on_download_success, on_download_fail) result.addCallbacks(on_download_success, on_download_fail)
else: else:
# Log the error and pass the failure onto the client # Log the error and pass the failure onto the client
log.error("Error occured downloading torrent from %s", url) log.error("Error occurred downloading torrent from %s", url)
log.error("Reason: %s", failure.getErrorMessage()) log.error("Reason: %s", failure.getErrorMessage())
result = failure result = failure
return result return result

View File

@ -350,7 +350,7 @@ class Core(CorePluginBase):
""" """
Recovers from download error Recovers from download error
:param f: failure that occured :param f: failure that occurred
:type f: Failure :type f: Failure
:returns: a Deferred if recovery was possible :returns: a Deferred if recovery was possible
else the original failure else the original failure
@ -470,7 +470,7 @@ class Core(CorePluginBase):
""" """
Recovers from import error Recovers from import error
:param f: failure that occured :param f: failure that occurred
:type f: Failure :type f: Failure
:returns: a Deferred if recovery was possible :returns: a Deferred if recovery was possible
else the original failure else the original failure

View File

@ -128,7 +128,7 @@ class DelugeTransferProtocol(Protocol):
# Remove the header from the buffer # Remove the header from the buffer
self._buffer = self._buffer[MESSAGE_HEADER_SIZE:] self._buffer = self._buffer[MESSAGE_HEADER_SIZE:]
except Exception, e: except Exception, e:
log.warn("Error occured when parsing message header: %s." % str(e)) log.warn("Error occurred when parsing message header: %s." % str(e))
log.warn("This version of Deluge cannot communicate with the sender of this data.") log.warn("This version of Deluge cannot communicate with the sender of this data.")
self._message_length = 0 self._message_length = 0
self._buffer = "" self._buffer = ""

View File

@ -208,7 +208,7 @@ class DelugeRPCProtocol(DelugeTransferProtocol):
# Send the request in a tuple because multiple requests can be sent at once # Send the request in a tuple because multiple requests can be sent at once
self.transfer_message((request.format_message(),)) self.transfer_message((request.format_message(),))
except Exception, e: except Exception, e:
log.warn("Error occured when sending message:" + str(e)) log.warn("Error occurred when sending message:" + str(e))
class DelugeRPCClientFactory(ClientFactory): class DelugeRPCClientFactory(ClientFactory):
protocol = DelugeRPCProtocol protocol = DelugeRPCProtocol

View File

@ -149,10 +149,10 @@ class Command(BaseCommand):
client.core.rescan_plugins() client.core.rescan_plugins()
except: except:
self.console.write("{!error!}An error occured, plugin was not installed") self.console.write("{!error!}An error occurred, plugin was not installed")
self.console.write("{!green!}Plugin was successfully installed: %s" % filename) self.console.write("{!green!}Plugin was successfully installed: %s" % filename)
def complete(self, line): def complete(self, line):
return component.get("ConsoleUI").tab_complete_path(line, ext=".egg", sort="name", dirs_first=-1) return component.get("ConsoleUI").tab_complete_path(line, ext=".egg", sort="name", dirs_first=-1)

View File

@ -592,7 +592,7 @@ class AllTorrents(BaseMode, component.Component):
self.stdscr.erase() self.stdscr.erase()
component.get("ConsoleUI").set_mode(AddTorrents(self,self.stdscr, self.config, self.encoding)) component.get("ConsoleUI").set_mode(AddTorrents(self,self.stdscr, self.config, self.encoding))
else: else:
self.messages.append(("Error","An error occured trying to display add torrents screen")) self.messages.append(("Error","An error occurred trying to display add torrents screen"))
component.stop(["AllTorrents"]).addCallback(dodeets) component.stop(["AllTorrents"]).addCallback(dodeets)
def show_torrent_details(self,tid): def show_torrent_details(self,tid):
@ -601,7 +601,7 @@ class AllTorrents(BaseMode, component.Component):
self.stdscr.erase() self.stdscr.erase()
component.get("ConsoleUI").set_mode(TorrentDetail(self,tid,self.stdscr, self.config, self.encoding)) component.get("ConsoleUI").set_mode(TorrentDetail(self,tid,self.stdscr, self.config, self.encoding))
else: else:
self.messages.append(("Error","An error occured trying to display torrent details")) self.messages.append(("Error","An error occurred trying to display torrent details"))
component.stop(["AllTorrents"]).addCallback(dodeets) component.stop(["AllTorrents"]).addCallback(dodeets)
def show_preferences(self): def show_preferences(self):
@ -617,7 +617,7 @@ class AllTorrents(BaseMode, component.Component):
self.stdscr.erase() self.stdscr.erase()
component.get("ConsoleUI").set_mode(Preferences(self,config,self.config,port,status,self.stdscr,self.encoding)) component.get("ConsoleUI").set_mode(Preferences(self,config,self.config,port,status,self.stdscr,self.encoding))
else: else:
self.messages.append(("Error","An error occured trying to display preferences")) self.messages.append(("Error","An error occurred trying to display preferences"))
component.stop(["AllTorrents"]).addCallback(doprefs) component.stop(["AllTorrents"]).addCallback(doprefs)
client.core.get_config().addCallback(_on_get_config) client.core.get_config().addCallback(_on_get_config)
@ -629,7 +629,7 @@ class AllTorrents(BaseMode, component.Component):
self.stdscr.erase() self.stdscr.erase()
component.get("ConsoleUI").set_mode(EventView(self,self.stdscr,self.encoding)) component.get("ConsoleUI").set_mode(EventView(self,self.stdscr,self.encoding))
else: else:
self.messages.append(("Error","An error occured trying to display events")) self.messages.append(("Error","An error occurred trying to display events"))
component.stop(["AllTorrents"]).addCallback(doevents) component.stop(["AllTorrents"]).addCallback(doevents)
def __legacy_mode(self): def __legacy_mode(self):
@ -640,7 +640,7 @@ class AllTorrents(BaseMode, component.Component):
self.legacy_mode.refresh() self.legacy_mode.refresh()
curses.curs_set(2) curses.curs_set(2)
else: else:
self.messages.append(("Error","An error occured trying to switch to legacy mode")) self.messages.append(("Error","An error occurred trying to switch to legacy mode"))
component.stop(["AllTorrents"]).addCallback(dolegacy) component.stop(["AllTorrents"]).addCallback(dolegacy)
def _torrent_filter(self, idx, data): def _torrent_filter(self, idx, data):

View File

@ -247,7 +247,7 @@ class TrackerIcons(Component):
""" """
Recovers from download error Recovers from download error
:param f: the failure that occured :param f: the failure that occurred
:type f: Failure :type f: Failure
:param host: the name of the host whose page failed to download :param host: the name of the host whose page failed to download
:type host: string :type host: string
@ -314,7 +314,7 @@ class TrackerIcons(Component):
""" """
Recovers from a parse error Recovers from a parse error
:param f: the failure that occured :param f: the failure that occurred
:type f: Failure :type f: Failure
:returns: a Deferred if recovery was possible :returns: a Deferred if recovery was possible
else the original failure else the original failure
@ -386,7 +386,7 @@ class TrackerIcons(Component):
""" """
Recovers from a download error Recovers from a download error
:param f: the failure that occured :param f: the failure that occurred
:type f: Failure :type f: Failure
:param host: the host the icon failed to download for :param host: the host the icon failed to download for
:type host: string :type host: string

View File

@ -242,7 +242,7 @@ class JSON(resource.Resource, component.Component):
def _on_rpc_request_failed(self, reason, response, request): def _on_rpc_request_failed(self, reason, response, request):
""" """
Handles any failures that occured while making an rpc call. Handles any failures that occurred while making an rpc call.
""" """
request.setResponseCode(http.INTERNAL_SERVER_ERROR) request.setResponseCode(http.INTERNAL_SERVER_ERROR)
return "" return ""
@ -658,7 +658,7 @@ class WebApi(JSONComponent):
allow_compression=False) allow_compression=False)
result.addCallbacks(on_download_success, on_download_fail) result.addCallbacks(on_download_success, on_download_fail)
else: else:
log.error("Error occured downloading torrent from %s", url) log.error("Error occurred downloading torrent from %s", url)
log.error("Reason: %s", result.getErrorMessage()) log.error("Reason: %s", result.getErrorMessage())
return result return result
@ -871,7 +871,7 @@ class WebApi(JSONComponent):
d.addCallback(on_connect, c) d.addCallback(on_connect, c)
d.addErrback(on_connect_failed) d.addErrback(on_connect_failed)
except: except:
main_deferred.callback((False, "An error occured")) main_deferred.callback((False, "An error occurred"))
return main_deferred return main_deferred
@export @export