Skip to content

Commit ab7c8d3

Browse files
antgonzaElDeveloper
authored andcommitted
fix #2581 (#2583)
1 parent 3aae997 commit ab7c8d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/qiita

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ from datetime import datetime, timedelta
1515
from os.path import join, abspath, dirname, basename
1616
from future.utils import viewitems
1717
from glob import glob
18-
from time import sleep
18+
from time import sleep, ctime
1919
from multiprocessing import active_children
2020

2121
import click
@@ -306,7 +306,7 @@ def start(port, master):
306306
else:
307307
raise
308308
base_url = qiita_config.base_url
309-
click.echo("Qiita started on %s:%d " % (base_url, port))
309+
click.echo("Qiita started on %s:%d @ %s" % (base_url, port, ctime()))
310310
ioloop = tornado.ioloop.IOLoop.instance()
311311

312312
if master:

0 commit comments

Comments
 (0)