aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2010-08-03 20:51:18 -0700
committerZac Medico <zmedico@gentoo.org>2010-08-03 20:51:18 -0700
commit67859bc9158947ec6fbc18a12f6a9ce0bba47fbd (patch)
treee5e545ceba8323d00a87c61c8bd82ddfcced6034 /pym/portage/proxy
parentBug #330645 - Make _unregister_module_proxy() detect partially imported (diff)
downloadportage-67859bc9158947ec6fbc18a12f6a9ce0bba47fbd.tar.gz
portage-67859bc9158947ec6fbc18a12f6a9ce0bba47fbd.tar.bz2
portage-67859bc9158947ec6fbc18a12f6a9ce0bba47fbd.zip
Fix typo in docstring.
Diffstat (limited to 'pym/portage/proxy')
-rw-r--r--pym/portage/proxy/lazyimport.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/proxy/lazyimport.py b/pym/portage/proxy/lazyimport.py
index c9147caea..fac845fba 100644
--- a/pym/portage/proxy/lazyimport.py
+++ b/pym/portage/proxy/lazyimport.py
@@ -53,7 +53,7 @@ def _unregister_module_proxy(name):
Destroy all proxies that reference the give module name. Also, check
for other proxies referenced by modules that have been imported and
destroy those proxies too. This way, destruction of a single proxy
- can trigger destruction of all the rest. If the a target module appears
+ can trigger destruction of all the rest. If a target module appears
to be partially imported (indicated when an AttributeError is caught),
this function will leave in place proxies that reference it.
"""