Skip to content

Commit

Permalink
Do not use extremely abbreviated variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
thatsIch committed Dec 12, 2016
1 parent 84205c8 commit 8cf82b4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rainopen.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,13 +195,13 @@ def run(self, edit):

fnm = self.view.file_name()

def opn(st):
opened = open_path(rainmeter.make_path(st, fnm)) or open_url(st)
def opn(string):
opened = open_path(rainmeter.make_path(string, fnm)) or open_url(string)
if opened:
logger.info(
__file__,
"run(self, edit)",
"found file or url '" + st + "' to open"
"found file or url '" + string + "' to open"
)

selection = self.view.sel()
Expand Down

0 comments on commit 8cf82b4

Please sign in to comment.