Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorBenjamin Saller <bcsaller@objectrealms.net>2007-06-07 19:38:59 (GMT)
committer Benjamin Saller <bcsaller@objectrealms.net>2007-06-07 19:38:59 (GMT)
commitac373085ef67d94ae736dff2e6ec3d10a04a4ca0 (patch)
tree0958c0a7388ae07c0f6a8257a15b8991c0b5ccaa /bin
parentb93e3453945b8886a90c828442599e4968fc2702 (diff)
remove pdb
Diffstat (limited to 'bin')
-rwxr-xr-xbin/index-service6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/index-service b/bin/index-service
index 3aff038..be53c84 100755
--- a/bin/index-service
+++ b/bin/index-service
@@ -80,7 +80,6 @@ class IndexService(Application):
# because the file isn't encoded anywhere accessible in the
# create call we must actually get the filename and trigger
# the indexing on that
- import pdb;pdb.set_trace()
filename = self.ds.get_filename(uid)
r = None
if filename:
@@ -137,9 +136,10 @@ if __name__ == "__main__":
signal.signal(signal.SIGTERM, handle_shutdown)
idx = IndexService()
-## idx()
- import gobject
+ ##idx()
# w/o ore.main
+
+ import gobject
idx.eventloop = gobject.MainLoop()
class options(object): pass
o = options()