Browse Source

Fix missing six package

I had some .pyc files kicking around, urgh.

Signed-off-by: Ben Firshman <[email protected]>
Ben Firshman 11 years ago
parent
commit
866050937a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      fig/container.py

+ 1 - 1
fig/container.py

@@ -1,7 +1,7 @@
 from __future__ import unicode_literals
 from __future__ import absolute_import
 
-from fig.packages import six
+import six
 
 
 class Container(object):