Browse Source

Fix xrange for py3

Denis K 9 years ago
parent
commit
70de884174
1 changed files with 1 additions and 1 deletions
  1. 1 1
      jet/dashboard.py

+ 1 - 1
jet/dashboard.py

@@ -91,7 +91,7 @@ class Dashboard(object):
     def render(self):
         context = self.context
         context.update({
-            'columns': xrange(self.columns),
+            'columns': range(self.columns),
             'modules': self.modules,
             'app_label': self.app_label,
         })