Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pybot/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'pybot/__init__.py')
-rw-r--r--[-rwxr-xr-x]pybot/__init__.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/pybot/__init__.py b/pybot/__init__.py
index d908414..17acd95 100755..100644
--- a/pybot/__init__.py
+++ b/pybot/__init__.py
@@ -1,6 +1,7 @@
#! /usr/bin/env python
# -*- coding: utf-8 -*-
#
+# Copyright (c) 2012-2013 Alan Aguiar alanjas@hotmail.com
# Copyright (c) 2012-2013 ButiĆ” Team butia@fing.edu.uy
# Butia is a free and open robotic platform
# www.fing.edu.uy/inco/proyectos/butia
@@ -23,5 +24,9 @@
import os
import sys
# Make sure that can import all files
-sys.path.insert(0, os.path.dirname(__file__))
+abs_path = os.path.abspath(os.path.dirname(__file__))
+sys.path.insert(0, abs_path)
+
+# version = 0.turtlebots_version.secondary_number
+__version__ = '0.21.0'