Search code examples
django-cms

How to find the version number of Django-CMS


I'm adding a new site to a server which already has Django & Django-CMS installed. How can I detect the version number of the installed Django-CMS?

Thanks!


Solution

  • from cms import __version__
    print __version__