Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAgustin Zubiaga <aguz@sugarlabs.org>2012-07-02 00:58:36 (GMT)
committer Agustin Zubiaga <aguz@sugarlabs.org>2012-07-02 00:58:36 (GMT)
commit26f4e41a892fb9c2936d4f63f733b9f09e4ce78f (patch)
tree04710d1ea9b25f995cca1700e641818bc20ddd17
parentd73dacf611f0b8e8adee0cebefcfc69a8e29854f (diff)
Changing imports (pycha -> sugarpycha)
-rw-r--r--bar.py6
-rw-r--r--chart.py4
-rw-r--r--color.py2
-rw-r--r--line.py4
-rw-r--r--pie.py4
-rw-r--r--polygonal.py8
-rw-r--r--radial.py8
-rw-r--r--scatter.py2
-rw-r--r--stackedbar.py4
9 files changed, 21 insertions, 21 deletions
diff --git a/bar.py b/bar.py
index ab0eeec..fa3698d 100644
--- a/bar.py
+++ b/bar.py
@@ -15,9 +15,9 @@
# You should have received a copy of the GNU Lesser General Public License
# along with PyCha. If not, see <http://www.gnu.org/licenses/>.
-from pycha.chart import Chart, uniqueIndices
-from pycha.color import hex2rgb
-from pycha.utils import safe_unicode
+from sugarpycha.chart import Chart, uniqueIndices
+from sugarpycha.color import hex2rgb
+from sugarpycha.utils import safe_unicode
class BarChart(Chart):
diff --git a/chart.py b/chart.py
index c6a1c34..16f2e09 100644
--- a/chart.py
+++ b/chart.py
@@ -21,8 +21,8 @@ import math
import cairo
-from pycha.color import ColorScheme, hex2rgb, DEFAULT_COLOR
-from pycha.utils import safe_unicode
+from sugarpycha.color import ColorScheme, hex2rgb, DEFAULT_COLOR
+from sugarpycha.utils import safe_unicode
class Chart(object):
diff --git a/color.py b/color.py
index 82b436f..fcf0784 100644
--- a/color.py
+++ b/color.py
@@ -18,7 +18,7 @@
import math
-from pycha.utils import clamp
+from sugarpycha.utils import clamp
DEFAULT_COLOR = '#3c581a'
diff --git a/line.py b/line.py
index 9b12152..07be5e6 100644
--- a/line.py
+++ b/line.py
@@ -15,8 +15,8 @@
# You should have received a copy of the GNU Lesser General Public License
# along with PyCha. If not, see <http://www.gnu.org/licenses/>.
-from pycha.chart import Chart
-from pycha.color import hex2rgb
+from sugarpycha.chart import Chart
+from sugarpycha.color import hex2rgb
class LineChart(Chart):
diff --git a/pie.py b/pie.py
index d7b3df2..12544dc 100644
--- a/pie.py
+++ b/pie.py
@@ -19,8 +19,8 @@ import math
import cairo
-from pycha.chart import Chart, Option, Layout, Area, get_text_extents
-from pycha.color import hex2rgb
+from sugarpycha.chart import Chart, Option, Layout, Area, get_text_extents
+from sugarpycha.color import hex2rgb
class PieChart(Chart):
diff --git a/polygonal.py b/polygonal.py
index b470c87..bb5ced6 100644
--- a/polygonal.py
+++ b/polygonal.py
@@ -19,10 +19,10 @@ import math
import cairo
-from pycha.chart import Chart
-from pycha.line import Point
-from pycha.color import hex2rgb
-from pycha.utils import safe_unicode
+from sugarpycha.chart import Chart
+from sugarpycha.line import Point
+from sugarpycha.color import hex2rgb
+from sugarpycha.utils import safe_unicode
class PolygonalChart(Chart):
diff --git a/radial.py b/radial.py
index 9055e26..8bbd1f9 100644
--- a/radial.py
+++ b/radial.py
@@ -19,10 +19,10 @@ import math
import cairo
-from pycha.chart import Chart
-from pycha.line import Point
-from pycha.color import hex2rgb
-from pycha.utils import safe_unicode
+from sugarpycha.chart import Chart
+from sugarpycha.line import Point
+from sugarpycha.color import hex2rgb
+from sugarpycha.utils import safe_unicode
class RadialChart(Chart):
diff --git a/scatter.py b/scatter.py
index 27656de..001e786 100644
--- a/scatter.py
+++ b/scatter.py
@@ -17,7 +17,7 @@
import math
-from pycha.line import LineChart
+from sugarpycha.line import LineChart
class ScatterplotChart(LineChart):
diff --git a/stackedbar.py b/stackedbar.py
index a728e50..3daf6e3 100644
--- a/stackedbar.py
+++ b/stackedbar.py
@@ -15,8 +15,8 @@
# You should have received a copy of the GNU Lesser General Public License
# along with PyCha. If not, see <http://www.gnu.org/licenses/>.
-from pycha.bar import BarChart, VerticalBarChart, HorizontalBarChart, Rect
-from pycha.chart import uniqueIndices
+from sugarpycha.bar import BarChart, VerticalBarChart, HorizontalBarChart, Rect
+from sugarpycha.chart import uniqueIndices
class StackedBarChart(BarChart):