aboutsummaryrefslogtreecommitdiff
path: root/aprio.py
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunk@stsci.edu>2014-04-12 15:38:13 -0400
committerJoe Hunkeler <jhunk@stsci.edu>2014-04-12 15:38:13 -0400
commitc3babbce22b80b399194d1c3edf3f4179c52b6d4 (patch)
tree7dada9ffb92157107912d2b97d7bd1742959d909 /aprio.py
parentecb7f1b62217a4844a57874dcf0354788d8e34e4 (diff)
downloadaprio-c3babbce22b80b399194d1c3edf3f4179c52b6d4.tar.gz
Fix TIME_SCALE conversion mistake at startup
Diffstat (limited to 'aprio.py')
-rwxr-xr-xaprio.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/aprio.py b/aprio.py
index 2d30a52..097cb73 100755
--- a/aprio.py
+++ b/aprio.py
@@ -329,7 +329,7 @@ if __name__ == "__main__":
PARSER.add_argument('--time-scale',
'-s',
- default=time_scale_convert(CONFIG['TIME_SCALE']),
+ default=CONFIG['TIME_SCALE'],
type=str,
help="Time scale for nice value.\nFormat: {n}{smdwMy}\nEx: 1d == 1 day"
)