diff options
author | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-12-21 22:50:07 -0500 |
---|---|---|
committer | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-12-21 22:50:07 -0500 |
commit | 22335fc4e71de5c4ceefbd5e502a15ad285740cf (patch) | |
tree | 5a33f159a35e5fc2f1ae3b6f308b7285ca4a78c6 | |
parent | 8316de841d291cdb4a214bd838eff01380cdeae9 (diff) |
unicoded the version strings.
-rw-r--r-- | combox/_version.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/combox/_version.py b/combox/_version.py index 00ebf1d..02e573d 100644 --- a/combox/_version.py +++ b/combox/_version.py @@ -1,3 +1,5 @@ +# -*- coding: utf-8 -*- +# # Copyright (C) 2015 Combox author(s). See AUTHORS. # # This file is part of Combox. @@ -16,8 +18,8 @@ # along with Combox (see COPYING). If not, see # <http://www.gnu.org/licenses/>. -__version__ = "0.1" -__release__ = "3" +__version__ = u"0.1" +__release__ = u"3" def get_version(): |