Skip to content

Commit

Permalink
[FIX] Restore accidentally deleted new line
Browse files Browse the repository at this point in the history
  • Loading branch information
m1k3lm committed Apr 2, 2016
1 parent 3376ac2 commit c17db94
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/openupgrade/openupgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
'short_name': _short_name,
}, DeprecationWarning, stacklevel=2)

_new_name = "openupgradelib.%s" % _short_name
_new_name = "openupgradelib.%s" % _short_name

_modules = __import__(_new_name, globals(), locals(), ['*'])
for _i in dir(_modules):
locals()[_i] = getattr(_modules, _i)
locals()[_i] = getattr(_modules, _i)

0 comments on commit c17db94

Please sign in to comment.