Public » MiniRedis Read More
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

don't print to stdout just to tell us you're running

Changeset ce0c0239533c

Parent fbfc6b3f6a09

by Profile picture of Benjamin PollackBenjamin Pollack

Changes to one file · Browse files at ce0c0239533c Showing diff from parent fbfc6b3f6a09 Diff from another changeset...

Change 1 of 1 Show Entire File miniredis.py Stacked
 
265
266
267
268
269
270
271
272
273
274
275
 
265
266
267
 
268
269
270
 
271
272
273
@@ -265,11 +265,9 @@
  logging = True   elif o == '-d':   db_file = os.path.abspath(a) - print 'Launching MiniRedis on %s:%s' % (host, port)   m = MiniRedis(host=host, port=port, logging=logging, db_file=db_file)   m.start()   m.join() - print 'Stopped'    if __name__ == '__main__':   main(sys.argv[1:])