summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xfb.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/fb.py b/fb.py
index fc0d73b..e53f901 100755
--- a/fb.py
+++ b/fb.py
@@ -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",