aboutsummaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorGravatar rcoh <rcoh@mit.edu>2011-02-16 18:20:36 -0500
committerGravatar rcoh <rcoh@mit.edu>2011-02-16 18:20:36 -0500
commit2df9e408a0ff74539862c4a4e562a878cc11a329 (patch)
treef9388ceb03bf4fe5166c2c474b68e08733a4a54a /util
parent83242972c09032eb89dd547f3ff3c4dcc2693555 (diff)
Code cleanup. Made Oval behavior (circle with h/w).
Diffstat (limited to 'util')
-rw-r--r--util/ComponentRegistry.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/util/ComponentRegistry.py b/util/ComponentRegistry.py
index 3036138..1db5135 100644
--- a/util/ComponentRegistry.py
+++ b/util/ComponentRegistry.py
@@ -1,4 +1,3 @@
-import pdb
import hashlib
from logger import main_log
import thread
@@ -41,7 +40,7 @@ def registerComponent(component, cid=None):
component['Id'] = cid
main_log.debug(cid + 'automatically assigned')
if cid in Registry:
- import pdb; pdb.set_trace()
+ main_log.warn(cid + 'overwritten.')
Registry[cid] = component
return cid