Skip to content

Commit

Permalink
Fixed error not pre-satisfied execjs
Browse files Browse the repository at this point in the history
  • Loading branch information
RDCH106 committed Jul 7, 2017
1 parent 8b0ba5f commit 7f7162e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pySRE/__init__.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,13 @@
# -*- coding: utf-8 -*-

from . import pySRE
try:
from . import pySRE
except ImportError as e:
print('%s: %s' % (e.name, e.msg))

class Metadata:
def __init__(self):
self.__version__ = '0.1.5'
self.__version__ = '0.1.6'
self.__author__ = 'Rubén de Celis Hernández'

def get_version(self):
Expand Down

0 comments on commit 7f7162e

Please sign in to comment.