forked from RedisInsight/RedisDesktopManager
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Only import required func/array from sys.
Remove distro-specific package manager command Update install.md Correct spelling and re-word x86 not supported message. Only import required func/array from sys. Correct formatting, grammar and punctuation. Update install.md
- Loading branch information
Showing
3 changed files
with
6 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
from __future__ import print_function | ||
import sys | ||
from sys import argv, exit | ||
|
||
|
||
if len(sys.argv) != 2: | ||
if len(argv) != 2: | ||
print("Usage: %version%") | ||
quit() | ||
exit(1) | ||
|
||
print( | ||
""" | ||
#ifndef RDM_VERSION | ||
#define RDM_VERSION "{0}" | ||
#endif // !RDM_VERSION | ||
""".format(sys.argv[1]) | ||
""".format(argv[1]) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters