diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-06-09 16:08:59 +0200 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2013-06-09 16:08:59 +0200 |
commit | ecfef4a560dece9dd911017efdfc63fcc04bedfc (patch) | |
tree | 42d00f155c47a8a80e3a023c841a59f87b73885c /module/remote | |
parent | restructured webui to single-page-app, removed jinja (diff) | |
download | pyload-ecfef4a560dece9dd911017efdfc63fcc04bedfc.tar.xz |
adapted to jshint config
Diffstat (limited to 'module/remote')
-rw-r--r-- | module/remote/create_jstypes.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/module/remote/create_jstypes.py b/module/remote/create_jstypes.py index ad05ec9a8..90afa4c96 100644 --- a/module/remote/create_jstypes.py +++ b/module/remote/create_jstypes.py @@ -14,9 +14,11 @@ def main(): print "generating apitypes.js" - f = open(join(module, 'web', 'static', 'js', 'utils', 'apitypes.js'), 'wb') + f = open(join(module, 'web', 'app', 'scripts', 'utils', 'apitypes.js'), 'wb') f.write("""// Autogenerated, do not edit! +/*jslint -W070: false*/ define([], function() { +\t'use strict'; \treturn { """) |