Skip to content

Commit

Permalink
Moved version string to standard module property.
Browse files Browse the repository at this point in the history
  • Loading branch information
Breakthrough committed Jan 23, 2016
1 parent e68c08c commit 3488d60
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scenedetect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
import numpy


# Used when printing the about & copyright message below.
VERSION_STRING = 'v0.3.1-beta'
# Used for module identification and when printing copyright & version info.
__version__ = 'v0.3.1-beta'

# About & copyright message string shown for the -v / --version CLI argument.
ABOUT_STRING = """PySceneDetect %s
Expand All @@ -62,7 +62,7 @@
THE SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED.
""" % VERSION_STRING
""" % __version__


def detect_scenes_file(path, scene_list, detector_list, stats_file = None,
Expand Down

0 comments on commit 3488d60

Please sign in to comment.