Last change
on this file since 2470 was
2470,
checked in by pweaver, 15 years ago
|
Bug #349789: added spaces to error message
|
-
Property svn:executable set to
*
|
File size:
265 bytes
|
Line | |
---|
1 | #!/usr/bin/python |
---|
2 | """ |
---|
3 | Returns an error when someone enters an invalid vm name. |
---|
4 | """ |
---|
5 | import sys |
---|
6 | |
---|
7 | |
---|
8 | |
---|
9 | |
---|
10 | def main(args): |
---|
11 | print 'Machine Name ' + args[0] + ' does not exist' |
---|
12 | return 0 |
---|
13 | |
---|
14 | |
---|
15 | if __name__ == '__main__': |
---|
16 | sys.exit(main(sys.argv[1:])) |
---|
17 | |
---|
18 | # vim:et:sw=4:ts=4 |
---|
Note: See
TracBrowser
for help on using the repository browser.