From 0aa907a983df05b4d1b24d98d7fb5176a526266b 2013-02-10 12:49:18 From: Matthias BUSSONNIER Date: 2013-02-10 12:49:18 Subject: [PATCH] deprecation message in old nbconvert.py --- diff --git a/nbconvert.py b/nbconvert.py index 68b6d42..db9974d 100755 --- a/nbconvert.py +++ b/nbconvert.py @@ -97,6 +97,12 @@ def main(): """Convert a notebook to html in one step""" app = NbconvertApp.instance() app.description = __doc__ + print(""" +====================================================== +Warning, we are deprecating this version of nbconvert, +please consider using the new version. +====================================================== + """) app.initialize() app.start() app.run()