Skip to content

Commit

Permalink
Unify indentation in test_monkeyYaml.py
Browse files Browse the repository at this point in the history
  • Loading branch information
arv committed Jul 6, 2015
1 parent b36a8f7 commit 98e77fb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/test_monkeyYaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@

f = None
try:
(f, pathname, description) = imp.find_module("monkeyYaml", [os.path.join(os.getcwd(), "../")])
module = imp.load_module("monkeyYaml", f, pathname, description)
monkeyYaml = module
(f, pathname, description) = imp.find_module("monkeyYaml", [os.path.join(os.getcwd(), "../")])
module = imp.load_module("monkeyYaml", f, pathname, description)
monkeyYaml = module
except:
raise ImportError("Cannot load monkeyYaml")
raise ImportError("Cannot load monkeyYaml")
finally:
if f:
f.close()
if f:
f.close()

#import monkeyYaml

Expand Down

0 comments on commit 98e77fb

Please sign in to comment.