diff options
-rwxr-xr-x | fb.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -320,8 +320,10 @@ class ConfigParser: return self.config class FBClient: - # TODO: update version with sed - version = "2.0.alpha" + version = "@VERSION@" + if version.startswith('@'): + version = 'unknown-version' + modes = Enum("modes", [ "upload", "delete", |